From 04b6935519a73fa434bd1755d286e51231b2b879 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Thu, 27 Mar 2025 18:42:45 +0100 Subject: [PATCH] really? --- src/fm95.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fm95.c b/src/fm95.c index 00c4512..d86d02c 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); FIR lpf_l, lpf_r; - init_lpf(&lpf_l, 15000, sample_rate); - init_lpf(&lpf_r, 15000, sample_rate); + init_lpf(&lpf_l, 15000/sample_rate, sample_rate); + init_lpf(&lpf_r, 15000/sample_rate, sample_rate); signal(SIGINT, stop); signal(SIGTERM, stop);