From 8fdc0cdd138f994f63f0ccdcbd5290e8921af016 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Thu, 27 Mar 2025 18:13:26 +0100 Subject: [PATCH] completly doesnt work? --- src/fm95.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fm95.c b/src/fm95.c index cf59af9..566d222 100644 --- a/src/fm95.c +++ b/src/fm95.c @@ -415,8 +415,8 @@ int main(int argc, char **argv) { init_preemphasis(&preemp_r, preemphasis_tau, sample_rate); Biquad lpf_l, lpf_r; - init_chebyshev_lpf(&lpf_l, sample_rate, 15000, 1.0f, 4); - init_chebyshev_lpf(&lpf_r, sample_rate, 15000, 1.0f, 4); + init_chebyshev_lpf(&lpf_l, sample_rate, 15000, 1.0f, 10); + init_chebyshev_lpf(&lpf_r, sample_rate, 15000, 1.0f, 10); signal(SIGINT, stop); signal(SIGTERM, stop);