diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-27 10:26:58 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-04-03 22:39:52 +0100 |
commit | dba9852935f31d81d16bf26ee21d164d5d5f5764 (patch) | |
tree | cdf5f333296aac3bf7d6fa5914919f073c74e533 /libavcodec/fft.c | |
parent | 4dcde00cfcf7914dec32683a8d511e281d0875fc (diff) | |
download | ffmpeg-dba9852935f31d81d16bf26ee21d164d5d5f5764.tar.gz |
ARM: NEON fixed-point FFT
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/fft.c')
-rw-r--r-- | libavcodec/fft.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fft.c b/libavcodec/fft.c index 19da4830a9..077f471ac8 100644 --- a/libavcodec/fft.c +++ b/libavcodec/fft.c @@ -126,6 +126,7 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse) if (CONFIG_MDCT) s->mdct_calcw = s->mdct_calc; #else if (CONFIG_MDCT) s->mdct_calcw = ff_mdct_calcw_c; + if (ARCH_ARM) ff_fft_fixed_init_arm(s); #endif for(j=4; j<=nbits; j++) { |