summaryrefslogtreecommitdiff
path: root/libavcodec/fft.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-09-11 02:24:22 +0000
committerMåns Rullgård <mans@mansr.com>2009-09-11 02:24:22 +0000
commitedc0f5dcba8f7a8d9ecfb48842bc4ec4530f9fd5 (patch)
tree5c0502bf51f44d0cf894c894adaae828b905843f /libavcodec/fft.c
parent46c32e2654ddeea14edf398a2d4225d46335dc90 (diff)
ARM: NEON optimised MDCT
Originally committed as revision 19819 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.c')
-rw-r--r--libavcodec/fft.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fft.c b/libavcodec/fft.c
index 7f348a6c85..93b4eb0434 100644
--- a/libavcodec/fft.c
+++ b/libavcodec/fft.c
@@ -119,6 +119,7 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse)
s->fft_calc = ff_fft_calc_neon;
s->imdct_calc = ff_imdct_calc_neon;
s->imdct_half = ff_imdct_half_neon;
+ s->mdct_calc = ff_mdct_calc_neon;
revtab_shift = 3;
#endif