0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-27 03:23:54 +01:00

will thjis commit break everything?

This commit is contained in:
2025-07-10 19:32:21 +02:00
parent db60762057
commit 7956b7d989
4 changed files with 12 additions and 21 deletions

View File

@@ -15,7 +15,7 @@ void initAGC(AGC* agc, int sampleRate, float targetLevel, float minGain, float m
agc->currentLevel = 0.0f;
agc->rms_buffer = 0.0f;
agc->rmsAlpha = expf(-1.0f / (sampleRate * 0.02f));
agc->rmsAlpha = expf(-1.0f / (sampleRate * 0.025f));
}
float process_agc(AGC* agc, float sidechain) {