move speed quietning code into Delivery, where it belongs.
[ardour.git] / libs / ardour / panner_shell.cc
index fd5564bbef90c960d9453caf64eeed3e49403bac..d8d760ba8f72413d77e6b44e7b36b194b4bc613e 100644 (file)
@@ -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 (fabsf(_session.transport_speed()) > 1.5f && 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 {