Remove useless += from ff_imdct_half_c() found by CSA.

Originally committed as revision 18578 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2009-04-17 18:12:00 +00:00
parent e8c9383914
commit b278a1ed1c
1 changed files with 0 additions and 1 deletions

View File

@ -142,7 +142,6 @@ void ff_imdct_half_c(MDCTContext *s, FFTSample *output, const FFTSample *input)
ff_fft_calc(&s->fft, z);
/* post rotation + reordering */
output += n4;
for(k = 0; k < n8; k++) {
FFTSample r0, i0, r1, i1;
CMUL(r0, i1, z[n8-k-1].im, z[n8-k-1].re, tsin[n8-k-1], tcos[n8-k-1]);