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

yet another implementation

This commit is contained in:
2025-03-27 18:12:11 +01:00
parent b2d97ef5e4
commit 6e374ce28b
3 changed files with 31 additions and 25 deletions

View File

@@ -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, 15000, sample_rate, 1.0f);
init_chebyshev_lpf(&lpf_r, 15000, sample_rate, 1.0f);
init_chebyshev_lpf(&lpf_l, sample_rate, 15000, 1.0f, 4);
init_chebyshev_lpf(&lpf_r, sample_rate, 15000, 1.0f, 4);
signal(SIGINT, stop);
signal(SIGTERM, stop);