NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / ardour / port_insert.cc
index c352e22e55a6c83ba98cd28c02bb0ff2713094bb..46d54cd445aece3647e7c6fee65586575bf4dd1d 100644 (file)
@@ -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);
                 }
 
@@ -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 */