0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-27 11:33:54 +01:00

maybe thats why?

This commit is contained in:
2025-12-29 21:59:55 +01:00
parent 87e97017df
commit 1d9cbf7893

View File

@@ -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 {