speed up agc (in performance, not audio levels)

This commit is contained in:
2025-06-08 10:21:13 +02:00
parent 256f91fbdf
commit 178b42386a
4 changed files with 13 additions and 11 deletions
+1 -1
View File
@@ -19,4 +19,4 @@ typedef struct {
} AGC;
void initAGC(AGC* agc, int sampleRate, float targetLevel, float minGain, float maxGain, float attackTime, float releaseTime);
float process_agc_stereo(AGC* agc, float left, float right, float *right_out);
float process_agc(AGC* agc, float sidechain);