Commit ceba4b81 authored by jbr's avatar jbr

10l: wrong operation in stereo rematrixing


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20106 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 37646485
......@@ -613,7 +613,7 @@ static void do_rematrixing(AC3DecodeContext *s)
bndend = FFMIN(end, ff_ac3_rematrix_band_tab[bnd+1]);
for(; i<bndend; i++) {
int tmp0 = s->fixed_coeffs[1][i];
s->fixed_coeffs[1][i] -= s->fixed_coeffs[2][i];
s->fixed_coeffs[1][i] += s->fixed_coeffs[2][i];
s->fixed_coeffs[2][i] = tmp0 - s->fixed_coeffs[2][i];
}
}
......
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