X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fport_insert.cc;h=ce34048dde05737da28c4422ed942946e8bea5c5;hb=f269e39115934c8e48dbc66e495d8cfdba1e70f0;hp=c352e22e55a6c83ba98cd28c02bb0ff2713094bb;hpb=b880a381523b2cfdb7ebd17c27fff1adf90fa028;p=ardour.git diff --git a/libs/ardour/port_insert.cc b/libs/ardour/port_insert.cc index c352e22e55..ce34048dde 100644 --- a/libs/ardour/port_insert.cc +++ b/libs/ardour/port_insert.cc @@ -59,6 +59,13 @@ PortInsert::~PortInsert () delete _mtdm; } +void +PortInsert::set_pre_fader (bool p) +{ + Processor::set_pre_fader (p); + _out->set_pre_fader (p); +} + void PortInsert::start_latency_detection () { @@ -115,7 +122,7 @@ PortInsert::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, Sample* out = outbuf.data(); _mtdm->process (nframes, in, out); - + outbuf.set_written (true); } @@ -165,10 +172,10 @@ PortInsert::state (bool full) node.add_property ("type", "port"); snprintf (buf, sizeof (buf), "%" PRIu32, _bitslot); node.add_property ("bitslot", buf); - snprintf (buf, sizeof (buf), "%" PRId64, _measured_latency); - node.add_property("latency", buf); - snprintf (buf, sizeof (buf), "%u", _session.get_block_size()); - node.add_property("block_size", buf); + snprintf (buf, sizeof (buf), "%" PRId64, _measured_latency); + node.add_property("latency", buf); + snprintf (buf, sizeof (buf), "%u", _session.get_block_size()); + node.add_property("block-size", buf); return node; } @@ -203,17 +210,17 @@ PortInsert::set_state (const XMLNode& node, int version) return -1; } - uint32_t blocksize = 0; - if ((prop = node.property ("block_size")) != 0) { - sscanf (prop->value().c_str(), "%u", &blocksize); - } + uint32_t blocksize = 0; + if ((prop = node.property ("block-size")) != 0) { + sscanf (prop->value().c_str(), "%u", &blocksize); + } - //if the jack period is the same as when the value was saved, we can recall our latency.. - if ( (_session.get_block_size() == blocksize) && (prop = node.property ("latency")) != 0) { - uint32_t latency = 0; - sscanf (prop->value().c_str(), "%u", &latency); - _measured_latency = latency; - } + //if the jack period is the same as when the value was saved, we can recall our latency.. + if ( (_session.get_block_size() == blocksize) && (prop = node.property ("latency")) != 0) { + uint32_t latency = 0; + sscanf (prop->value().c_str(), "%u", &latency); + _measured_latency = latency; + } if (!node.property ("ignore-bitslot")) { if ((prop = node.property ("bitslot")) == 0) { @@ -249,7 +256,9 @@ PortInsert::signal_latency() const bool PortInsert::configure_io (ChanCount in, ChanCount out) { +#ifndef PLATFORM_WINDOWS assert (!AudioEngine::instance()->process_lock().trylock()); +#endif /* for an insert, processor input corresponds to IO output, and vice versa */