| Index: source/patched-ffmpeg-mt/libavcodec/x86/fft_3dn2.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/x86/fft_3dn2.c (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/x86/fft_3dn2.c (working copy)
|
| @@ -56,7 +56,7 @@
|
| void ff_imdct_half_3dn2(FFTContext *s, FFTSample *output, const FFTSample *input)
|
| {
|
| x86_reg j, k;
|
| - long n = 1 << s->mdct_bits;
|
| + long n = s->mdct_size;
|
| long n2 = n >> 1;
|
| long n4 = n >> 2;
|
| long n8 = n >> 3;
|
| @@ -147,7 +147,7 @@
|
| void ff_imdct_calc_3dn2(FFTContext *s, FFTSample *output, const FFTSample *input)
|
| {
|
| x86_reg j, k;
|
| - long n = 1 << s->mdct_bits;
|
| + long n = s->mdct_size;
|
| long n4 = n >> 2;
|
|
|
| ff_imdct_half_3dn2(s, output+n4, input);
|
|
|