dsp/WEBP_USE_NEON: test for __aarch64__

__ARM_NEON__ is unset by current linux gcc/clang + android toolchains
for aarch64/arm64 builds.

Change-Id: Ib2ca172ea6fcf046e4ced19a431088674c99b7f6
This commit is contained in:
James Zern
2014-05-13 23:37:01 -07:00
parent 54bfffcabc
commit a577b23a0a
2 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ extern "C" {
#define WEBP_ANDROID_NEON // Android targets that might support NEON
#endif
#if defined(__ARM_NEON__) || defined(WEBP_ANDROID_NEON)
#if defined(__ARM_NEON__) || defined(WEBP_ANDROID_NEON) || defined(__aarch64__)
#define WEBP_USE_NEON
#endif