mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 20:29:35 +01:00
Relax assertion to allow rolling backwards into 0.
This commit is contained in:
parent
00a4ad712c
commit
8cf323c15d
1 changed files with 1 additions and 1 deletions
|
|
@ -379,7 +379,7 @@ Route::process_output_buffers (BufferSet& bufs,
|
|||
*
|
||||
* playback_latency() is guarnteed to be <= _signal_latency + _output->latency ()
|
||||
*/
|
||||
assert (!_disk_reader || !run_disk_reader || start_sample >= 0);
|
||||
assert (!_disk_reader || !run_disk_reader || start_sample >= 0 || speed < 0);
|
||||
|
||||
/* however the disk-writer may need to pick up output from other tracks
|
||||
* during pre-roll (in particular if this route has latent effects after the disk).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue