From 1d9cbf789378b7bc04b3ba5403795045b16a5851 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Mon, 29 Dec 2025 21:59:55 +0100 Subject: [PATCH] maybe thats why? --- filter/bs412.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter/bs412.c b/filter/bs412.c index 7ec4339..6539c08 100644 --- a/filter/bs412.c +++ b/filter/bs412.c @@ -55,7 +55,7 @@ float bs412_compress(BS412Compressor* mpx, float sample) { mpx->average_counter = 1; } - float target_gain = powf(10.0f, (mpx->target - modulation_power) / 20.0f); + float target_gain = powf(10.0f, (mpx->target - modulation_power) / 10.0f); if (modulation_power > mpx->target) { mpx->gain = mpx->attack * mpx->gain + (1.0f - mpx->attack) * target_gain; } else {