Tweak colouring in the processor list.
[ardour.git] / libs / ardour / send.cc
index 48083d594ab37db39523e3c5a55e98e8891d0afd..33b4277d93b4129d9df927d99c8ffb5444d2f710 100644 (file)
@@ -71,7 +71,7 @@ Send::deactivate ()
 }
 
 void
-Send::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, nframes_t nframes, bool)
+Send::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool)
 {
        if (_output->n_ports() == ChanCount::ZERO) {
                _meter->reset ();
@@ -133,6 +133,8 @@ Send::state (bool full)
        snprintf (buf, sizeof (buf), "%" PRIu32, _bitslot);
        node.add_property ("bitslot", buf);
 
+       node.add_child_nocopy (_amp->state (full));
+
        return node;
 }
 
@@ -143,8 +145,6 @@ Send::set_state (const XMLNode& node, int version)
                return set_state_2X (node, version);
        }
        
-       XMLNodeList nlist = node.children();
-       XMLNodeIterator niter;
        const XMLProperty* prop;
 
        Delivery::set_state (node, version);
@@ -161,13 +161,18 @@ Send::set_state (const XMLNode& node, int version)
                 _session.mark_send_id (_bitslot);
         }
 
-       /* XXX need to load automation state & data for amp */
+       XMLNodeList nlist = node.children();
+       for (XMLNodeIterator i = nlist.begin(); i != nlist.end(); ++i) {
+               if ((*i)->name() == X_("Processor")) {
+                       _amp->set_state (**i, version);
+               }
+       }
 
        return 0;
 }
 
 int
-Send::set_state_2X (const XMLNode& node, int version)
+Send::set_state_2X (const XMLNode& node, int /* version */)
 {
        /* use the IO's name for the name of the send */
        XMLNodeList const & children = node.children ();
@@ -212,6 +217,7 @@ Send::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
        return true;
 }
 
+/** Caller must hold process lock */
 bool
 Send::configure_io (ChanCount in, ChanCount out)
 {
@@ -219,10 +225,6 @@ Send::configure_io (ChanCount in, ChanCount out)
                return false;
        }
 
-       if (_output) {
-               _output->ensure_io (out, false, 0);
-       }
-
        if (!Processor::configure_io (in, out)) {
                return false;
        }