From 7cb189b8ef0a01fb8153698ac4a3998670952c4b Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 4 Sep 2022 15:50:20 +0200 Subject: [PATCH] Disable downwards hi-freq rolloff by default --- plugins/spectral_compressor/src/compressor_bank.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/spectral_compressor/src/compressor_bank.rs b/plugins/spectral_compressor/src/compressor_bank.rs index 99107665..3845d0f4 100644 --- a/plugins/spectral_compressor/src/compressor_bank.rs +++ b/plugins/spectral_compressor/src/compressor_bank.rs @@ -357,8 +357,8 @@ impl CompressorParams { if param_id_prefix == UPWARDS_NAME_PREFIX { 0.75 } else { - // These basically work in the opposite way - 0.25 + // When used subtly, no rolloff is usually better for downwards compression + 0.0 }, FloatRange::Linear { min: 0.0, max: 1.0 }, )