From 9a54413bfa9b0005b14c7a263ba7a0ae03f3ba54 Mon Sep 17 00:00:00 2001 From: Mikkeli Matlock Date: Sun, 21 Jun 2026 23:14:15 +0900 Subject: [PATCH] feat: allow makeup down to -24 dB on all channels Extend the per-channel makeup range floor from -12 to -24 dB so makeup can attenuate as well as boost, giving more post-compressor gain-staging headroom. Co-Authored-By: Claude Opus 4.8 --- src/params.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/params.rs b/src/params.rs index 8568d48..47073c6 100644 --- a/src/params.rs +++ b/src/params.rs @@ -183,7 +183,7 @@ impl Default for CompressorParams { .with_unit(" ms") .with_value_to_string(formatters::v2s_f32_rounded(1)), - makeup_db: FloatParam::new("Makeup", 0.0, FloatRange::Linear { min: -12.0, max: 24.0 }) + makeup_db: FloatParam::new("Makeup", 0.0, FloatRange::Linear { min: -24.0, max: 24.0 }) .with_smoother(SmoothingStyle::Linear(20.0)) .with_unit(" dB") .with_value_to_string(formatters::v2s_f32_rounded(1)),