Browse Source

10l: wrong operation in stereo rematrixing

Originally committed as revision 20106 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Justin Ruggles 16 years ago
parent
commit
3fdccca091
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ac3dec.c

+ 1
- 1
libavcodec/ac3dec.c View File

@@ -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…
Cancel
Save