diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-09-30 01:09:57 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-09-30 01:09:57 +0000 |
commit | 16c91d2b233fe04697ba8f7ab6d1bad12a4ad69f (patch) | |
tree | 89c9ee63f7638880375f61b7e7e0a8b7a95346e0 | |
parent | e935fa9e17f0b4b8eb45e355f6f555fa7b4b02cf (diff) | |
download | ffmpeg-16c91d2b233fe04697ba8f7ab6d1bad12a4ad69f.tar.gz |
remove unneeded assignment in inner loop. rematrixing bands are contiguous.
Originally committed as revision 20089 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ac3dec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 85c60241ed..dd97d116cd 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -608,10 +608,11 @@ static void do_rematrixing(AC3DecodeContext *s) end = FFMIN(s->end_freq[1], s->end_freq[2]); + i = ff_ac3_rematrix_band_tab[0]; for(bnd=0; bnd<s->num_rematrixing_bands; bnd++) { if(s->rematrixing_flags[bnd]) { bndend = FFMIN(end, ff_ac3_rematrix_band_tab[bnd+1]); - for(i=ff_ac3_rematrix_band_tab[bnd]; i<bndend; i++) { + for(; i<bndend; i++) { tmp0 = s->fixed_coeffs[1][i]; tmp1 = s->fixed_coeffs[2][i]; s->fixed_coeffs[1][i] = tmp0 + tmp1; |