NO-OP: move implementation out of header file
This is in preparation to test directly flushing insert/send
buffers after Delivery::run like Ardour 7.4 to 8.0 does
see also 44a2ef9098
This commit is contained in:
parent
a59e64f1d8
commit
d5d730ef8c
@ -58,9 +58,7 @@ public:
|
||||
|
||||
void run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_sample, double speed, pframes_t nframes, bool);
|
||||
|
||||
void flush_buffers (samplecnt_t nframes) {
|
||||
_out->flush_buffers (nframes);
|
||||
}
|
||||
void flush_buffers (samplecnt_t nframes);
|
||||
|
||||
samplecnt_t signal_latency () const;
|
||||
|
||||
|
@ -204,6 +204,12 @@ PortInsert::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_samp
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
PortInsert::flush_buffers (samplecnt_t nframes)
|
||||
{
|
||||
_out->flush_buffers (nframes);
|
||||
}
|
||||
|
||||
XMLNode&
|
||||
PortInsert::state () const
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user