summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-05-26 06:58:44 +0200
committerRobin Gareus <robin@gareus.org>2014-05-26 06:58:44 +0200
commit3be01ea502addb80f191ff504b4d58b0a0012be9 (patch)
tree2ee6420de070a04df1595793c8a5ae7f17a00f97 /libs/ardour/route.cc
parentbb727f4588a5ecdcf750a19bab08db5d6c71653e (diff)
apply gain automation on bounce - fixes 5887
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 24cb5aabff..4b899197d2 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -545,6 +545,9 @@ Route::bounce_process (BufferSet& buffers, framepos_t start, framecnt_t nframes,
return;
}
+ _amp->set_gain_automation_buffer (_session.gain_automation_buffer ());
+ _amp->setup_gain_automation (start, start + nframes, nframes);
+
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
if (!include_endpoint && (*i) == endpoint) {