diff --git a/README.chromium b/README.chromium index 00d9c84ac..528babe92 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1093 +Version: 1095 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 72b9f46bb..8ad492485 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 1093 +#define LIBYUV_VERSION 1095 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/rotate_neon64.cc b/source/rotate_neon64.cc index 0b336b811..d54378ec8 100644 --- a/source/rotate_neon64.cc +++ b/source/rotate_neon64.cc @@ -18,8 +18,7 @@ extern "C" { #endif // This module is for GCC Neon armv8 64 bit. -#if !defined(LIBYUV_DISABLE_NEON) && \ - defined(__ARM_NEON__) && defined(__aarch64__) +#if !defined(LIBYUV_DISABLE_NEON) && defined(__aarch64__) static uvec8 kVTbl4x4Transpose = { 0, 4, 8, 12, 1, 5, 9, 13, 2, 6, 10, 14, 3, 7, 11, 15 }; diff --git a/source/row_neon64.cc b/source/row_neon64.cc index 7a153e18c..cbb234412 100644 --- a/source/row_neon64.cc +++ b/source/row_neon64.cc @@ -16,8 +16,7 @@ extern "C" { #endif // This module is for GCC Neon armv8 64 bit. -#if !defined(LIBYUV_DISABLE_NEON) && \ - defined(__ARM_NEON__) && defined(__aarch64__) +#if !defined(LIBYUV_DISABLE_NEON) && defined(__aarch64__) // Read 8 Y, 4 U and 4 V from 422 #define READYUV422 \