From 3fe1769a439548b8e5f9f5f298c3c0fdf2cc6f4d Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 24 Jul 2022 17:06:20 +0200 Subject: [PATCH] Change the global threshold range This should go lower and it doesn't need to exceed much past 0 dBFS (since full 0 dBFS in the frequency domain will peak pretty hard in the time domain). --- plugins/spectral_compressor/src/compressor_bank.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/spectral_compressor/src/compressor_bank.rs b/plugins/spectral_compressor/src/compressor_bank.rs index af911a4e..97827f05 100644 --- a/plugins/spectral_compressor/src/compressor_bank.rs +++ b/plugins/spectral_compressor/src/compressor_bank.rs @@ -171,10 +171,10 @@ impl ThresholdParams { ThresholdParams { threshold_db: FloatParam::new( "Global Threshold", - 0.0, + -20.0, FloatRange::Linear { - min: -50.0, - max: 50.0, + min: -100.0, + max: 20.0, }, ) .with_callback(set_update_both_thresholds.clone())