From a27e2bb7a5971e39535a4a9670a191ec86bbff39 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sun, 2 Mar 2025 09:32:29 +0100 Subject: [PATCH] changes --- src/fm95.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fm95.c b/src/fm95.c index 116a496..5a2bac2 100644 --- a/src/fm95.c +++ b/src/fm95.c @@ -376,7 +376,8 @@ int main(int argc, char **argv) { init_lpf(&lpf_r, LPF_CUTOFF, 1.25f, SAMPLE_RATE); StereoCompressor comp; - init_compressor_stereo(&comp, -2.0f, 8.0f, 2.0f, 4.0f, 0.025f, 0.4f, 0.04f, SAMPLE_RATE); + // THRESH RATIO KNE MAKE ATT REL RMS + init_compressor_stereo(&comp, -2.0f, 8.0f, 2.0f, 12.0f, 0.025f, 0.4f, 0.04f, SAMPLE_RATE); // #endregion signal(SIGINT, stop);