Commit 85a8811e authored by lorenm's avatar lorenm

slightly faster ff_imdct_calc_3dn2() on amd64. (gcc added a bunch of useless movsxd)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5962 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4e92e6c3
......@@ -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;
......
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