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

clip breaks evrything?

This commit is contained in:
2025-07-08 23:07:26 +02:00
parent 58a37da27c
commit f937bd81b7

View File

@@ -53,5 +53,5 @@ float bs412_compress(BS412Compressor* mpx, float sample) {
else else
mpx->gain = mpx->gain * mpx->release + (1.0f - mpx->release) * gain_target; mpx->gain = mpx->gain * mpx->release + (1.0f - mpx->release) * gain_target;
return fminf(sample*mpx->gain, dbr_to_deviation(mpx->target*1.1f)); return sample*mpx->gain;
} }