X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Freturn.cc;h=4f9e8b958a4aad86db00df92f50d4fd9e3133dfb;hb=8488d8f6a53d3385893a435481cb60ed21c21ea0;hp=a1374feb8adcb475ebaba1a09bd4f3bbd2b38a84;hpb=a473d630eb165272992e90f8d854b1d66ec0be63;p=ardour.git diff --git a/libs/ardour/return.cc b/libs/ardour/return.cc index a1374feb8a..4f9e8b958a 100644 --- a/libs/ardour/return.cc +++ b/libs/ardour/return.cc @@ -22,30 +22,35 @@ #include "pbd/xml++.h" #include "ardour/amp.h" -#include "ardour/audio_port.h" +#include "ardour/audioengine.h" #include "ardour/buffer_set.h" #include "ardour/io.h" #include "ardour/meter.h" -#include "ardour/panner.h" -#include "ardour/port.h" #include "ardour/return.h" #include "ardour/session.h" -#include "ardour/mute_master.h" #include "i18n.h" using namespace ARDOUR; using namespace PBD; +std::string +Return::name_and_id_new_return (Session& s, uint32_t& bitslot) +{ + bitslot = s.next_return_id(); + return string_compose (_("return %1"), bitslot + 1); +} + + Return::Return (Session& s, bool internal) : IOProcessor (s, (internal ? false : true), false, - string_compose (_("return %1"), (_bitslot = s.next_return_id()) + 1)) + name_and_id_new_return (s, _bitslot)) , _metering (false) { /* never muted */ _amp.reset (new Amp (_session)); - _meter.reset (new PeakMeter (_session)); + _meter.reset (new PeakMeter (_session, name())); } Return::~Return () @@ -91,12 +96,14 @@ Return::set_state (const XMLNode& node, int version) IOProcessor::set_state (*insert_node, version); - if ((prop = node.property ("bitslot")) == 0) { - _bitslot = _session.next_return_id(); - } else { - _session.unmark_return_id (_bitslot); - sscanf (prop->value().c_str(), "%" PRIu32, &_bitslot); - _session.mark_return_id (_bitslot); + if (!node.property ("ignore-bitslot")) { + if ((prop = node.property ("bitslot")) == 0) { + _bitslot = _session.next_return_id(); + } else { + _session.unmark_return_id (_bitslot); + sscanf (prop->value().c_str(), "%" PRIu32, &_bitslot); + _session.mark_return_id (_bitslot); + } } return 0; @@ -129,7 +136,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; @@ -144,7 +151,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); } @@ -153,27 +160,3 @@ Return::configure_io (ChanCount in, ChanCount out) return true; } -/** Set up the XML description of a return so that its name is unique. - * @param state XML return state. - * @param session Session. - */ -void -Return::make_unique (XMLNode &state, Session &session) -{ - uint32_t const bitslot = session.next_return_id() + 1; - - char buf[32]; - snprintf (buf, sizeof (buf), "%" PRIu32, bitslot); - state.property("bitslot")->set_value (buf); - - std::string const name = string_compose (_("return %1"), bitslot); - - state.property("name")->set_value (name); - - XMLNode* io = state.child ("IO"); - if (io) { - io->property("name")->set_value (name); - } -} - -