comparison mdct.c @ 9480:d527872fdf26 libavcodec

Remove useless += from ff_imdct_half_c() found by CSA.
author michael
date Fri, 17 Apr 2009 18:12:00 +0000
parents 0975a4c09974
children 67a20f0eb42c
comparison
equal deleted inserted replaced
9479:6e649626d0c1 9480:d527872fdf26
140 in2 -= 2; 140 in2 -= 2;
141 } 141 }
142 ff_fft_calc(&s->fft, z); 142 ff_fft_calc(&s->fft, z);
143 143
144 /* post rotation + reordering */ 144 /* post rotation + reordering */
145 output += n4;
146 for(k = 0; k < n8; k++) { 145 for(k = 0; k < n8; k++) {
147 FFTSample r0, i0, r1, i1; 146 FFTSample r0, i0, r1, i1;
148 CMUL(r0, i1, z[n8-k-1].im, z[n8-k-1].re, tsin[n8-k-1], tcos[n8-k-1]); 147 CMUL(r0, i1, z[n8-k-1].im, z[n8-k-1].re, tsin[n8-k-1], tcos[n8-k-1]);
149 CMUL(r1, i0, z[n8+k ].im, z[n8+k ].re, tsin[n8+k ], tcos[n8+k ]); 148 CMUL(r1, i0, z[n8+k ].im, z[n8+k ].re, tsin[n8+k ], tcos[n8+k ]);
150 z[n8-k-1].re = r0; 149 z[n8-k-1].re = r0;