This commit is contained in:
2025-03-27 18:44:57 +01:00
parent 34071c1967
commit 798b5d35fb
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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, sample_rate);
init_lpf(&lpf_r, 15000/sample_rate, sample_rate);
init_lpf(&lpf_l, 15000, sample_rate);
init_lpf(&lpf_r, 15000, sample_rate);
signal(SIGINT, stop);
signal(SIGTERM, stop);