mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
10l: wrong operation in stereo rematrixing
Originally committed as revision 20106 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
49214f61a5
commit
3fdccca091
1 changed files with 1 additions and 1 deletions
|
|
@ -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];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue