0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00

remove bs412 +.1 limiter

This commit is contained in:
2025-07-25 17:54:05 +02:00
parent 59a099c619
commit 3cde61f31e

View File

@@ -57,7 +57,5 @@ float bs412_compress(BS412Compressor* mpx, float sample) {
mpx->gain = fmaxf(0.0f, fminf(mpx->max, mpx->gain));
float final_limit = fminf(1.0f, dbr_to_deviation(mpx->target + 0.1f) / mpx->mpx_deviation);
return fmaxf(-final_limit, fminf(final_limit, sample * mpx->gain));
return sample * mpx->gain;
}