mirror of
https://github.com/radio95-rnt/fm95.git
synced 2026-02-26 19:23:51 +01:00
amplify lpf output
This commit is contained in:
@@ -143,7 +143,7 @@ float apply_low_pass_filter(LowPassFilter *lp, float sample) {
|
|||||||
result += lp->low_pass_fir[0][i] * lp->sample_buffer[index];
|
result += lp->low_pass_fir[0][i] * lp->sample_buffer[index];
|
||||||
index = (index + 1) % FIR_TAPS;
|
index = (index + 1) % FIR_TAPS;
|
||||||
}
|
}
|
||||||
return result;
|
return result*2;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user