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:
Robin Gareus 2023-10-22 00:17:08 +02:00
parent a59e64f1d8
commit d5d730ef8c
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 7 additions and 3 deletions

View File

@ -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;

View File

@ -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
{