From 2c97f9c8f96fe8c1e08b03aa0f974cf5a571e517 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 8 Mar 2025 21:07:13 +0100 Subject: [PATCH] adjust compressor --- src/fm95.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fm95.c b/src/fm95.c index 9583820..2f8008e 100644 --- a/src/fm95.c +++ b/src/fm95.c @@ -373,8 +373,8 @@ int main(int argc, char **argv) { // Use https://www.earlevel.com/main/2021/09/02/biquad-calculator-v3/ BiquadFilter lpf_l, lpf_r; - init_lpf(&lpf_l, LPF_CUTOFF, 0.17675f, SAMPLE_RATE); - init_lpf(&lpf_r, LPF_CUTOFF, 0.17675f, SAMPLE_RATE); + init_lpf(&lpf_l, LPF_CUTOFF, 0.3535f, SAMPLE_RATE); + init_lpf(&lpf_r, LPF_CUTOFF, 0.3535f, SAMPLE_RATE); // #endregion signal(SIGINT, stop);