summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-04-07 19:35:45 +0200
committerRobin Gareus <robin@gareus.org>2019-04-07 19:52:02 +0200
commit73816d3e384219cebf27c1bcedb7cf30d732026a (patch)
treed659ae76713414d019b77453300b51072b0567e2 /libs/ardour/route.cc
parenta1c19911dbc74ea8635501a0c55a921d87cbaaf7 (diff)
Bounce process always uses speed 1.0
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index ac66e4feda..2f3f53306f 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -543,7 +543,6 @@ Route::bounce_process (BufferSet& buffers, samplepos_t start, samplecnt_t nframe
_trim->setup_gain_automation (start, start + nframes, nframes);
latency = 0;
- const double speed = _session.transport_speed ();
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
if (!include_endpoint && (*i) == endpoint) {
@@ -566,7 +565,7 @@ Route::bounce_process (BufferSet& buffers, samplepos_t start, samplecnt_t nframe
*/
if ((*i) == _main_outs) {
assert ((*i)->does_routing());
- (*i)->run (buffers, start - latency, start - latency + nframes, speed, nframes, true);
+ (*i)->run (buffers, start - latency, start - latency + nframes, 1.0, nframes, true);
buffers.set_count ((*i)->output_streams());
}