summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-07-30 02:27:06 +0200
committerRobin Gareus <robin@gareus.org>2013-07-30 02:27:06 +0200
commitbd34ab04cd43ed2f5bf6eebb8b6ea0e0e5cbb727 (patch)
treef2f90c57959b7bbf55fbc3d84167dbc43e079fc2 /libs/ardour/route.cc
parent47ec32fa15c0528e463e5dc553f040b043ab8245 (diff)
fix issue with generator plugins and no-roll disk monitoring
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 1eb92c68aa..c16b962f34 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -597,7 +597,7 @@ Route::passthru (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame,
void
Route::passthru_silence (framepos_t start_frame, framepos_t end_frame, pframes_t nframes, int declick)
{
- BufferSet& bufs (_session.get_silent_buffers (n_process_buffers()));
+ BufferSet& bufs (_session.get_scratch_buffers (n_process_buffers()));
bufs.set_count (_input->n_ports());
write_out_of_band_data (bufs, start_frame, end_frame, nframes);