Commit dcbb920f authored by Michael Karcher's avatar Michael Karcher Committed by Michael Niedermayer

Fix atrac3 decoder broken in e55d5390

Signed-off-by: 's avatarMichael Karcher <ffmpeg@mkarcher.dialup.fu-berlin.de>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c6ef7641
......@@ -518,7 +518,7 @@ static int add_tonal_components(float *spectrum, int num_components,
output = &spectrum[components[i].pos];
for (j = 0; j < components[i].num_coefs; j++)
output[i] += input[i];
output[j] += input[j];
}
return last_pos;
......
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