summaryrefslogtreecommitdiff
path: root/libs/ardour/internal_send.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/internal_send.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/internal_send.cc')
-rw-r--r--libs/ardour/internal_send.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/ardour/internal_send.cc b/libs/ardour/internal_send.cc
index 33b299dfee..de5af0c6e2 100644
--- a/libs/ardour/internal_send.cc
+++ b/libs/ardour/internal_send.cc
@@ -194,8 +194,7 @@ InternalSend::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame
/* target gain has changed */
- Amp::apply_gain (mixbufs, nframes, _current_gain, tgain);
- _current_gain = tgain;
+ _current_gain = Amp::apply_gain (mixbufs, _session.nominal_frame_rate(), nframes, _current_gain, tgain);
} else if (tgain == 0.0) {