Commit 79f2dfed authored by michael's avatar michael

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18578 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4481b42a
......@@ -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]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment