13
0

Disk-reader don't silence buffers when not rolling

Doing so may clear out-of-band data which is injected into the
data-stream.
This commit is contained in:
Robin Gareus 2017-09-30 05:35:12 +02:00
parent 5ada17eba0
commit 61f8e53b7e

View File

@ -254,16 +254,12 @@ DiskReader::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_samp
} }
if (speed == 0.0) { if (speed == 0.0) {
/* stopped. Don't accidentally pass any data from disk /* Nothing to do here.
* into our outputs (e.g. via interpolation) *
* nor jump ahead playback_sample when not rolling * Do not clear input buffers here when (ms == MonitoringDisk)
*/ * we need to allow out-of-band data to pass thru from the input.
if (ms == MonitoringDisk) { * (e.g. MIDI immediate events)
/* when monitoring disk, clear input data so far, */
* everything before the disk processor is not relevant.
*/
bufs.silence (nframes, 0);
}
return; return;
} }