summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index ab341b7f34..36adbfa148 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -83,7 +83,6 @@ Route::Route (Session& sess, string name, Flag flg, DataType default_type)
, _signal_latency_at_amp_position (0)
, _initial_delay (0)
, _roll_delay (0)
- , _declicked_silent (true)
, _flags (flg)
, _pending_declick (true)
, _meter_point (MeterPostFader)
@@ -466,18 +465,7 @@ Route::process_output_buffers (BufferSet& bufs,
GLOBAL DECLICK (for transport changes etc.)
----------------------------------------------------------------------------------------- */
- if (_declickable && _declicked_silent && declick <= 0) {
- bufs.silence (nframes, 0);
- }
-
maybe_declick (bufs, nframes, declick);
-
- if (declick < 0) {
- _declicked_silent = true;
- }
- else if (declick > 0) {
- _declicked_silent = false;
- }
_pending_declick = 0;
/* -------------------------------------------------------------------------------------------