Merge changes I230b3532,Idf3057a7

* changes:
  enable NEON for Windows ARM builds
  Makefile.vc: add rudimentary Windows ARM support
This commit is contained in:
pascal massimino
2015-01-10 02:14:48 -08:00
committed by Gerrit Code Review
2 changed files with 18 additions and 1 deletions

View File

@ -72,6 +72,11 @@ extern "C" {
#define WEBP_USE_NEON
#endif
#if defined(_MSC_VER) && _MSC_VER >= 1700 && defined(_M_ARM)
#define WEBP_USE_NEON
#define USE_INTRINSICS
#endif
#if defined(__mips__) && !defined(__mips64) && (__mips_isa_rev < 6)
#define WEBP_USE_MIPS32
#if (__mips_isa_rev >= 2)