We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc0a278 commit f381d6eCopy full SHA for f381d6e
audionormalizer.c
@@ -20,7 +20,6 @@ void normalize(float* samples, unsigned int size) {
20
}
21
22
for (unsigned int i = 0 ; i < size ; i++) {
23
- float o = samples[i];
24
float value = samples[i] / rms;
25
if (value < -1.0) {
26
samples[i] = -1.0;
0 commit comments