X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Freturn.cc;h=5c92b9051cb2f0557deb6b6cfdb108b7bc388d18;hb=935fd3b32f600d6f20c134fa2ccae78aa4781de5;hp=43a2e1bfd1e997246d3dfd7299af3cd6227aa7cd;hpb=6fa6514cfdb0ce38d93b51197f599dfd091bad1d;p=ardour.git diff --git a/libs/ardour/return.cc b/libs/ardour/return.cc index 43a2e1bfd1..5c92b9051c 100644 --- a/libs/ardour/return.cc +++ b/libs/ardour/return.cc @@ -24,12 +24,13 @@ #include "ardour/amp.h" #include "ardour/audioengine.h" #include "ardour/buffer_set.h" +#include "ardour/gain_control.h" #include "ardour/io.h" #include "ardour/meter.h" #include "ardour/return.h" #include "ardour/session.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace ARDOUR; using namespace PBD; @@ -49,8 +50,12 @@ Return::Return (Session& s, bool internal) { /* never muted */ - _amp.reset (new Amp (_session)); - _meter.reset (new PeakMeter (_session)); + boost::shared_ptr gl (new AutomationList (Evoral::Parameter (GainAutomation))); + _gain_control = boost::shared_ptr (new GainControl (_session, Evoral::Parameter (GainAutomation), gl)); + add_control (_gain_control); + + _amp.reset (new Amp (_session, X_("Fader"), _gain_control, true)); + _meter.reset (new PeakMeter (_session, name())); } Return::~Return () @@ -81,7 +86,7 @@ Return::set_state (const XMLNode& node, int version) { XMLNodeList nlist = node.children(); XMLNodeIterator niter; - const XMLProperty* prop; + XMLProperty const * prop; const XMLNode* insert_node = &node; /* Return has regular IO automation (gain, pan) */ @@ -110,7 +115,7 @@ Return::set_state (const XMLNode& node, int version) } void -Return::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool) +Return::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, double speed, pframes_t nframes, bool) { if ((!_active && !_pending_active) || _input->n_ports() == ChanCount::ZERO) { return; @@ -122,13 +127,13 @@ Return::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pfra // Can't automate gain for sends or returns yet because we need different buffers // so that we don't overwrite the main automation data for the route amp // _amp->setup_gain_automation (start_frame, end_frame, nframes); - _amp->run (bufs, start_frame, end_frame, nframes, true); + _amp->run (bufs, start_frame, end_frame, speed, nframes, true); if (_metering) { if (_amp->gain_control()->get_value() == 0) { _meter->reset(); } else { - _meter->run (bufs, start_frame, end_frame, nframes, true); + _meter->run (bufs, start_frame, end_frame, speed, nframes, true); } } @@ -136,7 +141,7 @@ Return::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pfra } bool -Return::can_support_io_configuration (const ChanCount& in, ChanCount& out) const +Return::can_support_io_configuration (const ChanCount& in, ChanCount& out) { out = in + _input->n_ports(); return true; @@ -151,7 +156,7 @@ Return::configure_io (ChanCount in, ChanCount out) // Ensure there are enough buffers (since we add some) if (_session.get_scratch_buffers(in).count() < out) { - Glib::Mutex::Lock em (_session.engine().process_lock()); + Glib::Threads::Mutex::Lock em (_session.engine().process_lock()); IO::PortCountChanged(out); } @@ -159,4 +164,3 @@ Return::configure_io (ChanCount in, ChanCount out) return true; } -