summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2016-07-15 02:02:21 +0200
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-14 21:55:49 -0400
commit8c3551341c312180eba79551bbc2f29f2797bdca (patch)
tree1fcb890b37bf1142e1457a81a6379e926a872037 /libs/ardour/route.cc
parent9ba6e938d8f7d61bc747ed5e9a102638bb1a8eb1 (diff)
Make Route and Track ::silent_roll() also flush out ports buffers
So that MIDI in the ports is really made silent.
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 1e1be37d9f..46b17cdbc7 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -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;
}