summaryrefslogtreecommitdiff
path: root/libs/ardour/panner_shell.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-09-15 17:01:12 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-09-15 17:01:12 -0400
commit50a6487e771f24803d82a1a1c6c3938448b07ae2 (patch)
treeed5611bf63ba535c78fc52ea2769a0fea763de31 /libs/ardour/panner_shell.cc
parentaf2b8c73b9e9b34447fcab59eff2a9d54bde8b48 (diff)
move speed quietning code into Delivery, where it belongs.
Note: I find the -12dB reduction too much of a reduction.
Diffstat (limited to 'libs/ardour/panner_shell.cc')
-rw-r--r--libs/ardour/panner_shell.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/libs/ardour/panner_shell.cc b/libs/ardour/panner_shell.cc
index 3884df8e74..d8d760ba8f 100644
--- a/libs/ardour/panner_shell.cc
+++ b/libs/ardour/panner_shell.cc
@@ -385,14 +385,7 @@ PannerShell::run (BufferSet& inbufs, BufferSet& outbufs, framepos_t start_frame,
if (!(as & Play || ((as & Touch) && !_panner->touching()))) {
- // Speed quietning
- gain_t gain_coeff = GAIN_COEFF_UNITY;
-
- if (fabs(_session.transport_speed()) > 1.5 && Config->get_quieten_at_speed ()) {
- gain_coeff = speed_quietning;
- }
-
- distribute_no_automation (inbufs, outbufs, nframes, gain_coeff);
+ distribute_no_automation (inbufs, outbufs, nframes, 1.0);
} else {