mirror of
				https://github.com/webmproject/libwebp.git
				synced 2025-10-31 10:25:46 +01:00 
			
		
		
		
	disable NEON for arm64 platform
The registers and instructions are quite different to 32bit and the assembly code needs a rewrite. more info: http://people.linaro.org/~rikuvoipio/aarch64-talk/ Change-Id: Id75dbc1b7bf47f43a426ba2831f25bb8fa252c4f
This commit is contained in:
		| @@ -36,7 +36,8 @@ extern "C" { | |||||||
| #define WEBP_ANDROID_NEON  // Android targets that might support NEON | #define WEBP_ANDROID_NEON  // Android targets that might support NEON | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #if defined(__ARM_NEON__) || defined(WEBP_ANDROID_NEON) | #if (defined(__ARM_NEON__) && !defined(__aarch64__)) || \ | ||||||
|  |     defined(WEBP_ANDROID_NEON) | ||||||
| #define WEBP_USE_NEON | #define WEBP_USE_NEON | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user