summaryrefslogtreecommitdiff
path: root/libavcodec/fft_template.c
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2014-03-26 15:20:42 +0100
committerJanne Grunau <janne-libav@jannau.net>2014-04-22 19:35:40 +0200
commit650c4300d94aa9398ff1dd4f454bf39eaa285f62 (patch)
tree9f3063c9591be5412f48029d5a510ecc48ee804e /libavcodec/fft_template.c
parentf9157463dbcd2db8fe9504197c0c04d0d7d04f31 (diff)
aarch64: NEON float FFT
Approximately as fast as the ARM NEON version on Apple's A7.
Diffstat (limited to 'libavcodec/fft_template.c')
-rw-r--r--libavcodec/fft_template.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fft_template.c b/libavcodec/fft_template.c
index 8b94ff1972..808f317c17 100644
--- a/libavcodec/fft_template.c
+++ b/libavcodec/fft_template.c
@@ -158,6 +158,7 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse)
#endif
#if FFT_FLOAT
+ if (ARCH_AARCH64) ff_fft_init_aarch64(s);
if (ARCH_ARM) ff_fft_init_arm(s);
if (ARCH_PPC) ff_fft_init_ppc(s);
if (ARCH_X86) ff_fft_init_x86(s);