promote Playlist::RegionList to ARDOUR::RegionList; fix timefx on multiple regions...
[ardour.git] / libs / ardour / io_processor.cc
index 8cad0ba6cb8c467410d9ba0387552152b0e465f8..8e7cba0ab12eafe100cda5e2c7d3dc8c1e58ad51 100644 (file)
@@ -249,6 +249,14 @@ IOProcessor::silence (framecnt_t nframes)
        }
 }
 
+void
+IOProcessor::increment_port_buffer_offset (pframes_t offset)
+{
+        if (_own_output && _output) {
+                _output->increment_port_buffer_offset (offset);
+        }
+}
+
 ChanCount
 IOProcessor::natural_output_streams() const
 {