summaryrefslogtreecommitdiff
path: root/libs/ardour/delivery.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-04-07 05:21:57 +0200
committerRobin Gareus <robin@gareus.org>2015-04-07 05:21:57 +0200
commit83519faffbfc3d38d4258cbca1107c06109f0573 (patch)
tree89c2c585240621d5ea8a7a1462ee7f33b430a367 /libs/ardour/delivery.cc
parent528f945ba3f30a767be84b10be419177e553f767 (diff)
low-pass filter gain-fader.
fixes various fader zipper noise issues. It voids sample accuate fader automation (the fader-gain is low-pass filtered at 10Hz). Yet all musical purposes this makes a lot more sense than sample accuracy anyway.
Diffstat (limited to 'libs/ardour/delivery.cc')
-rw-r--r--libs/ardour/delivery.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/ardour/delivery.cc b/libs/ardour/delivery.cc
index f7d679d3ba..f16719888f 100644
--- a/libs/ardour/delivery.cc
+++ b/libs/ardour/delivery.cc
@@ -262,8 +262,7 @@ Delivery::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pf
if (tgain != _current_gain) {
/* target gain has changed */
- Amp::apply_gain (bufs, nframes, _current_gain, tgain);
- _current_gain = tgain;
+ _current_gain = Amp::apply_gain (bufs, _session.nominal_frame_rate(), nframes, _current_gain, tgain);
} else if (tgain == 0.0) {