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

change agc params

This commit is contained in:
2025-04-19 13:15:19 +02:00
parent 4564bbf737
commit 6f0a2fa5dc

View File

@@ -456,7 +456,7 @@ int main(int argc, char **argv) {
AGC agc;
void initAGC(AGC* agc, int sampleRate, float targetLevel, float minGain, float maxGain, float attackTime, float releaseTime);
initAGC(&agc, sample_rate, 0.707f, 0.25f, 2.5f, 0.01f, 0.4f);
initAGC(&agc, sample_rate, 0.625f, 0.25f, 2.5f, 0.015f, 0.4f);
signal(SIGINT, stop);
signal(SIGTERM, stop);