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 <noreply@anthropic.com>
This commit is contained in:
+1
-1
@@ -183,7 +183,7 @@ impl Default for CompressorParams {
|
|||||||
.with_unit(" ms")
|
.with_unit(" ms")
|
||||||
.with_value_to_string(formatters::v2s_f32_rounded(1)),
|
.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_smoother(SmoothingStyle::Linear(20.0))
|
||||||
.with_unit(" dB")
|
.with_unit(" dB")
|
||||||
.with_value_to_string(formatters::v2s_f32_rounded(1)),
|
.with_value_to_string(formatters::v2s_f32_rounded(1)),
|
||||||
|
|||||||
Reference in New Issue
Block a user