From dffc169c99eece6c7dc7ace66be007e3c8f56b2b Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 24 Jul 2022 17:48:02 +0200 Subject: [PATCH] Skew slope and curve more towards 0 Especially positive curve values can get out of hand quick --- plugins/spectral_compressor/src/compressor_bank.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/spectral_compressor/src/compressor_bank.rs b/plugins/spectral_compressor/src/compressor_bank.rs index f74d7a3d..73c1d6de 100644 --- a/plugins/spectral_compressor/src/compressor_bank.rs +++ b/plugins/spectral_compressor/src/compressor_bank.rs @@ -205,26 +205,26 @@ impl ThresholdParams { FloatRange::SymmetricalSkewed { min: -36.0, max: 36.0, - factor: FloatRange::skew_factor(-1.0), + factor: FloatRange::skew_factor(-2.0), center: 0.0, }, ) .with_callback(set_update_both_thresholds.clone()) .with_unit(" dB/oct") - .with_step_size(0.1), + .with_step_size(0.01), curve_curve: FloatParam::new( "Threshold Curve", 0.0, FloatRange::SymmetricalSkewed { min: -24.0, max: 24.0, - factor: FloatRange::skew_factor(-1.0), + factor: FloatRange::skew_factor(-2.0), center: 0.0, }, ) .with_callback(set_update_both_thresholds) .with_unit(" dB/oct²") - .with_step_size(0.1), + .with_step_size(0.01), } } }