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

adjust compressor

This commit is contained in:
2025-03-08 21:07:13 +01:00
parent 6a5d199483
commit 2c97f9c8f9

View File

@@ -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);