summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-07-25 13:01:31 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-18 11:40:53 -0400
commit6038ef44f9786b4b981760dcbcfd467ec8faf108 (patch)
tree039e4800410979b532225f615d642292504c447d /libs
parentfb430a7738d4d6d38de8ac3fba491c3572bed386 (diff)
auditioner always runs at normal speed, independent of transport speed
Diffstat (limited to 'libs')
-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 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) {