diff --git a/README.chromium b/README.chromium index 32d3266e7..c379f7300 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 645 +Version: 646 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index e0f04ef61..738ec4f97 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 645 +#define LIBYUV_VERSION 646 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_neon.cc b/source/row_neon.cc index d4c4d61ed..82587a334 100644 --- a/source/row_neon.cc +++ b/source/row_neon.cc @@ -2514,7 +2514,7 @@ void ARGBColorMatrixRow_NEON(uint8* dst_argb, const int8* matrix_argb, "vqadd.s16 q14, q14, q6 \n" // Accumulate R "vqshrun.s16 d16, q12, #7 \n" // 16 bit to 8 bit B "vqshrun.s16 d18, q13, #7 \n" // 16 bit to 8 bit G - "vqshrun.s16 d20, q14, #7 \n" // 16 bit to 8 bit G + "vqshrun.s16 d20, q14, #7 \n" // 16 bit to 8 bit R "vst4.8 {d16, d18, d20, d22}, [%0]! \n" // store 8 ARGB pixels. "bgt 1b \n" : "+r"(dst_argb), // %0 @@ -2655,8 +2655,8 @@ void SobelXYRow_NEON(const uint8* src_sobelx, const uint8* src_sobely, "bgt 1b \n" : "+r"(src_sobelx), // %0 "+r"(src_sobely), // %1 - "+r"(dst_argb), // %2 - "+r"(width) // %3 + "+r"(dst_argb), // %2 + "+r"(width) // %3 : : "cc", "memory", "q0", "q1" );