Set up region BBT time when frame position changes, if the region is glued to BBT...
[ardour.git] / libs / ardour / send.cc
index 9e34080fe094a23e6e10dd9060570537b50e92b1..f299995ffaef2af29f0d40ad966e7c5dbfc5a0a8 100644 (file)
@@ -21,6 +21,7 @@
 #include <algorithm>
 
 #include "pbd/xml++.h"
+#include "pbd/boost_debug.h"
 
 #include "ardour/amp.h"
 #include "ardour/send.h"
@@ -38,10 +39,12 @@ using namespace ARDOUR;
 using namespace PBD;
 using namespace std;
 
-Send::Send (Session& s, boost::shared_ptr<MuteMaster> mm, Role r)
-       : Delivery (s, mm, string_compose (_("send %1"), (_bitslot = s.next_send_id()) + 1), r)
+Send::Send (Session& s, boost::shared_ptr<Pannable> p, boost::shared_ptr<MuteMaster> mm, Role r)
+       : Delivery (s, p, mm, string_compose (_("send %1"), (_bitslot = s.next_send_id()) + 1), r)
        , _metering (false)
 {
+       boost_debug_shared_ptr_mark_interesting (this, "send");
+
        _amp.reset (new Amp (_session));
        _meter.reset (new PeakMeter (_session));
 }
@@ -66,7 +69,7 @@ Send::deactivate ()
        _amp->deactivate ();
        _meter->deactivate ();
        _meter->reset ();
-       
+
        Processor::deactivate ();
 }
 
@@ -144,7 +147,7 @@ Send::set_state (const XMLNode& node, int version)
        if (version < 3000) {
                return set_state_2X (node, version);
        }
-       
+
        const XMLProperty* prop;
 
        Delivery::set_state (node, version);
@@ -196,7 +199,7 @@ Send::set_state_2X (const XMLNode& node, int /* version */)
                return -1;
        }
 
-       XMLProperty const * prop = (*j)->property X_("name");
+       XMLProperty const * prop = (*j)->property (X_("name"));
        if (!prop) {
                return -1;
        }
@@ -217,7 +220,7 @@ Send::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
        return true;
 }
 
-/** Caller must not hold process lock */
+/** Caller must hold process lock */
 bool
 Send::configure_io (ChanCount in, ChanCount out)
 {
@@ -225,11 +228,6 @@ Send::configure_io (ChanCount in, ChanCount out)
                return false;
        }
 
-       if (_output) {
-               Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock());
-               _output->ensure_io (out, false, 0);
-       }
-
        if (!Processor::configure_io (in, out)) {
                return false;
        }