diff options
author | Colin Kinloch <colin@kinlo.ch> | 2017-12-18 15:39:09 +0000 |
---|---|---|
committer | Colin Kinloch <colin@kinlo.ch> | 2017-12-23 16:49:04 +0000 |
commit | 853b1daa499cf3add4014cf4d825c01603e2d1ea (patch) | |
tree | f8e1f70e4701deb88dc591af916ffb4410005eed /thirdparty/libvpx | |
parent | 9969c5c6a1cc103fb7b23c279b7fde0d92a5599a (diff) |
Fixed android arm64v8
Diffstat (limited to 'thirdparty/libvpx')
-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 |