From 6038ef44f9786b4b981760dcbcfd467ec8faf108 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 25 Jul 2017 13:01:31 -0400 Subject: [PATCH] auditioner always runs at normal speed, independent of transport speed --- libs/ardour/route.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index c1725c4258..f83a9d4d13 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -425,7 +425,7 @@ Route::process_output_buffers (BufferSet& bufs, bool const meter_already_run = metering_state() == MeteringInput; framecnt_t latency = 0; - const double speed = _session.transport_speed (); + const double speed = (is_auditioner() ? 1.0 : _session.transport_speed ()); for (ProcessorList::const_iterator i = _processors.begin(); i != _processors.end(); ++i) {