diff options
Diffstat (limited to 'thirdparty/libvpx/vpx_config.h')
-rw-r--r-- | thirdparty/libvpx/vpx_config.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/thirdparty/libvpx/vpx_config.h b/thirdparty/libvpx/vpx_config.h index 9ed45d4006..fb9e13c4ad 100644 --- a/thirdparty/libvpx/vpx_config.h +++ b/thirdparty/libvpx/vpx_config.h @@ -42,13 +42,20 @@ #define HAVE_SSE2 1 #define HAVE_SSSE3 1 #define HAVE_AVX2 1 -#elif defined(__arm__) || defined(__TARGET_ARCH_ARM) || defined(_M_ARM) || defined(__aarch64__) +#elif defined(__arm__) || defined(__TARGET_ARCH_ARM) || defined(_M_ARM) #define ARCH_X86 0 #define ARCH_X86_64 0 #define ARCH_ARM 1 #define HAVE_NEON 1 #define HAVE_NEON_ASM 1 +#elif defined(__aarch64__) + #define ARCH_X86 0 + #define ARCH_X86_64 0 + + #define ARCH_ARM 1 + #define HAVE_NEON 0 + #define HAVE_NEON_ASM 0 #else #define ARCH_X86 0 #define ARCH_X86_64 0 |