mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
Make Route and Track ::silent_roll() also flush out ports buffers
So that MIDI in the ports is really made silent.
This commit is contained in:
parent
9ba6e938d8
commit
8c3551341c
2 changed files with 2 additions and 0 deletions
|
|
@ -3501,6 +3501,7 @@ int
|
|||
Route::silent_roll (pframes_t nframes, framepos_t /*start_frame*/, framepos_t /*end_frame*/, bool& /* need_butler */)
|
||||
{
|
||||
silence (nframes);
|
||||
flush_processor_buffers_locked (nframes);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -496,6 +496,7 @@ Track::silent_roll (pframes_t nframes, framepos_t /*start_frame*/, framepos_t /*
|
|||
_amp->apply_gain_automation(false);
|
||||
|
||||
silence (nframes);
|
||||
flush_processor_buffers_locked (nframes);
|
||||
|
||||
framecnt_t playback_distance;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue