]> git.sesse.net Git - ffmpeg/commitdiff
slightly faster ff_imdct_calc_3dn2() on amd64. (gcc added a bunch of useless movsxd)
authorLoren Merritt <lorenm@u.washington.edu>
Tue, 8 Aug 2006 21:47:11 +0000 (21:47 +0000)
committerLoren Merritt <lorenm@u.washington.edu>
Tue, 8 Aug 2006 21:47:11 +0000 (21:47 +0000)
Originally committed as revision 5962 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/i386/fft_3dn2.c

index 40ec9d8eb1bc3893ea9bd8e123f45807bd3cffc8..80dece700d328021d25118fa2c94c1cc3c9882f4 100644 (file)
@@ -138,7 +138,7 @@ void ff_fft_calc_3dn2(FFTContext *s, FFTComplex *z)
 void ff_imdct_calc_3dn2(MDCTContext *s, FFTSample *output,
                         const FFTSample *input, FFTSample *tmp)
 {
-    int k, n8, n4, n2, n;
+    long k, n8, n4, n2, n;
     const uint16_t *revtab = s->fft.revtab;
     const FFTSample *tcos = s->tcos;
     const FFTSample *tsin = s->tsin;