mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-01 19:37:45 +01:00
auditioner always runs at normal speed, independent of transport speed
This commit is contained in:
parent
7df044595f
commit
3fff121ab6
1 changed files with 1 additions and 1 deletions
|
|
@ -424,7 +424,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) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue