diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-12-12 17:45:32 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-01-14 22:19:27 +0100 |
commit | 032d4da8af353e32ab5c86ee3a210f6065921a4a (patch) | |
tree | 036afe3be89d79fe733e8aad86b7ca36aba49a23 | |
parent | 8b4119187b62d6932e07aded11d33d3b24e1b42f (diff) | |
download | ffmpeg-032d4da8af353e32ab5c86ee3a210f6065921a4a.tar.gz |
aarch64: configure: set arch dependent features
Stack is always 16 byte aligned and clz, 64bit operations and unaligned
memory access are fast in aarch64 mode on ARMv8.
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1583,10 +1583,10 @@ for ext in $(filter_out mmx $ARCH_EXT_LIST_X86); do eval ${ext}_suggest='"${ext}_external ${ext}_inline"' done -aligned_stack_if_any="ppc x86" -fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64" -fast_clz_if_any="alpha avr32 mips ppc x86" -fast_unaligned_if_any="ppc x86" +aligned_stack_if_any="aarch64 ppc x86" +fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64" +fast_clz_if_any="aarch64 alpha avr32 mips ppc x86" +fast_unaligned_if_any="aarch64 ppc x86" need_memalign="altivec neon sse" |