1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
/**
* Copyright © 2017-2025 Wellington Wallace
*
* This file is part of Easy Effects.
*
* Easy Effects is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Easy Effects is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Easy Effects. If not, see <https://www.gnu.org/licenses/>.
*/
#include "delay.hpp"
#include <qobject.h>
#include <sys/types.h>
#include <algorithm>
#include <format>
#include <memory>
#include <span>
#include <string>
#include "db_manager.hpp"
#include "easyeffects_db_delay.h"
#include "lv2_macros.hpp"
#include "lv2_wrapper.hpp"
#include "pipeline_type.hpp"
#include "plugin_base.hpp"
#include "pw_manager.hpp"
#include "tags_plugin_name.hpp"
#include "util.hpp"
Delay::Delay(const std::string& tag, pw::Manager* pipe_manager, PipelineType pipe_type, QString instance_id)
: PluginBase(tag,
tags::plugin_name::BaseName::delay,
tags::plugin_package::Package::lsp,
instance_id,
pipe_manager,
pipe_type),
settings(db::Manager::self().get_plugin_db<db::Delay>(pipe_type,
tags::plugin_name::BaseName::delay + "#" + instance_id)) {
const auto lv2_plugin_uri = "http://lsp-plug.in/plugins/lv2/comp_delay_x2_stereo";
lv2_wrapper = std::make_unique<lv2::Lv2Wrapper>(lv2_plugin_uri);
packageInstalled = lv2_wrapper->found_plugin;
if (!packageInstalled) {
util::debug(std::format("{}{} is not installed", log_tag, lv2_plugin_uri));
}
init_common_controls<db::Delay>(settings);
BIND_LV2_PORT("mode_l", modeL, setModeL, db::Delay::modeLChanged);
BIND_LV2_PORT("mode_r", modeR, setModeR, db::Delay::modeRChanged);
BIND_LV2_PORT("time_l", timeL, setTimeL, db::Delay::timeLChanged);
BIND_LV2_PORT("time_r", timeR, setTimeR, db::Delay::timeRChanged);
BIND_LV2_PORT("samp_l", sampleL, setSampleL, db::Delay::sampleLChanged);
BIND_LV2_PORT("samp_r", sampleR, setSampleR, db::Delay::sampleRChanged);
BIND_LV2_PORT("m_l", metersL, setMetersL, db::Delay::metersLChanged);
BIND_LV2_PORT("m_r", metersR, setMetersR, db::Delay::metersRChanged);
BIND_LV2_PORT("cm_l", centimetersL, setCentimetersL, db::Delay::centimetersLChanged);
BIND_LV2_PORT("cm_r", centimetersR, setCentimetersR, db::Delay::centimetersRChanged);
BIND_LV2_PORT("t_l", temperatureL, setTemperatureL, db::Delay::temperatureLChanged);
BIND_LV2_PORT("t_r", temperatureR, setTemperatureR, db::Delay::temperatureRChanged);
BIND_LV2_PORT("phase_l", invertPhaseL, setInvertPhaseL, db::Delay::invertPhaseLChanged);
BIND_LV2_PORT("phase_r", invertPhaseR, setInvertPhaseR, db::Delay::invertPhaseRChanged);
// dB controls with -inf mode.
BIND_LV2_PORT_DB("dry_l", dryL, setDryL, db::Delay::dryLChanged, true);
BIND_LV2_PORT_DB("dry_r", dryR, setDryR, db::Delay::dryRChanged, true);
BIND_LV2_PORT_DB("wet_l", wetL, setWetL, db::Delay::wetLChanged, true);
BIND_LV2_PORT_DB("wet_r", wetR, setWetR, db::Delay::wetRChanged, true);
}
Delay::~Delay() {
if (connected_to_pw) {
disconnect_from_pw();
}
settings->disconnect();
util::debug(std::format("{}{} destroyed", log_tag, name.toStdString()));
}
void Delay::reset() {
settings->setDefaults();
}
void Delay::setup() {
if (!lv2_wrapper->found_plugin) {
return;
}
lv2_wrapper->set_n_samples(n_samples);
if (lv2_wrapper->get_rate() != rate) {
lv2_wrapper->create_instance(rate);
}
}
void Delay::process(std::span<float>& left_in,
std::span<float>& right_in,
std::span<float>& left_out,
std::span<float>& right_out) {
if (!lv2_wrapper->found_plugin || !lv2_wrapper->has_instance() || bypass) {
std::ranges::copy(left_in, left_out.begin());
std::ranges::copy(right_in, right_out.begin());
return;
}
if (input_gain != 1.0F) {
apply_gain(left_in, right_in, input_gain);
}
lv2_wrapper->connect_data_ports(left_in, right_in, left_out, right_out);
lv2_wrapper->run();
if (output_gain != 1.0F) {
apply_gain(left_out, right_out, output_gain);
}
// This plugin gives the latency in number of samples
const auto lv = static_cast<uint>(lv2_wrapper->get_control_port_value("out_latency"));
if (latency_n_frames != lv) {
latency_n_frames = lv;
latency_value = static_cast<float>(latency_n_frames) / static_cast<float>(rate);
util::debug(std::format("{}{} latency: {} s", log_tag, name.toStdString(), latency_value));
update_filter_params();
}
if (updateLevelMeters) {
get_peaks(left_in, right_in, left_out, right_out);
}
}
void Delay::process([[maybe_unused]] std::span<float>& left_in,
[[maybe_unused]] std::span<float>& right_in,
[[maybe_unused]] std::span<float>& left_out,
[[maybe_unused]] std::span<float>& right_out,
[[maybe_unused]] std::span<float>& probe_left,
[[maybe_unused]] std::span<float>& probe_right) {}
auto Delay::get_latency_seconds() -> float {
return latency_value;
}
|