summaryrefslogtreecommitdiff
path: root/libavcodec/mdct.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-04-17 18:12:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-04-17 18:12:00 +0000
commitb278a1ed1c0dd5cadf50a9a3b761eaecebbc1276 (patch)
tree008091d4b75c3b365f23afc1b464f3eb61b0680d /libavcodec/mdct.c
parente8c93839148a168aedc978388f14c3599dd072f8 (diff)
Remove useless += from ff_imdct_half_c() found by CSA.
Originally committed as revision 18578 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mdct.c')
-rw-r--r--libavcodec/mdct.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/mdct.c b/libavcodec/mdct.c
index cb3388f6ff..7bd4d77f68 100644
--- a/libavcodec/mdct.c
+++ b/libavcodec/mdct.c
@@ -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]);