Mercurial > libavcodec.hg
changeset 3559:c02459cd0d31 libavcodec
slightly faster ff_imdct_calc_3dn2() on amd64. (gcc added a bunch of useless movsxd)
| author | lorenm |
|---|---|
| date | Tue, 08 Aug 2006 21:47:11 +0000 |
| parents | 33d29a80bcac |
| children | f1a16d793fc5 |
| files | i386/fft_3dn2.c |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/i386/fft_3dn2.c Tue Aug 08 18:51:38 2006 +0000 +++ b/i386/fft_3dn2.c Tue Aug 08 21:47:11 2006 +0000 @@ -138,7 +138,7 @@ 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;
