From 439bf215de4e3dc533d556e9ed02f09a95d1214a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 7 Jun 2021 20:27:49 -0600 Subject: [PATCH] force automation_run() calls in Route::process_output_buffers() to do "active only" --- libs/ardour/route.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 5904497c1a..75ad4cd2cf 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -367,10 +367,10 @@ Route::process_output_buffers (BufferSet& bufs, * Mute has its own issues since there's not a single mute-point, * but in general */ - automation_run (start_sample, nframes); + automation_run (start_sample, nframes, true); if (_pannable) { - _pannable->automation_run (start_sample + _signal_latency, nframes); + _pannable->automation_run (start_sample + _signal_latency,nframes, true); } /* figure out if we're going to use gain automation */