Commit 4416c1f9 authored by Rafaël Carré's avatar Rafaël Carré

equalizer: apply preamp twice on 2nd pass

Fixes #8760
parent a9aba401
...@@ -450,7 +450,7 @@ static void EqzFilter( filter_t *p_filter, float *out, float *in, ...@@ -450,7 +450,7 @@ static void EqzFilter( filter_t *p_filter, float *out, float *in,
p_sys->x2[ch][0] = x2; p_sys->x2[ch][0] = x2;
/* We add source PCM + filtered PCM */ /* We add source PCM + filtered PCM */
out[ch] = p_sys->f_gamp *( EQZ_IN_FACTOR * x2 + o ); out[ch] = p_sys->f_gamp * p_sys->f_gamp *( EQZ_IN_FACTOR * x2 + o );
} }
else else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment