diff --git a/README.chromium b/README.chromium index cf50831ea..556bacd69 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1846 +Version: 1847 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 6d52b22a5..733f5cd93 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 1846 +#define LIBYUV_VERSION 1847 #endif // INCLUDE_LIBYUV_VERSION_H_ diff --git a/source/row_neon.cc b/source/row_neon.cc index c0db6f1de..b777a0e15 100644 --- a/source/row_neon.cc +++ b/source/row_neon.cc @@ -609,10 +609,10 @@ void DetileRow_NEON(const uint8_t* src, int width) { asm volatile( "1: \n" - "vld1.16 {q0}, [%0], %3 \n" // load 16 bytes + "vld1.8 {q0}, [%0], %3 \n" // load 16 bytes "subs %2, %2, #16 \n" // 16 processed per loop "pld [%0, #1792] \n" - "vst1.16 {q0}, [%1]! \n" // store 16 bytes + "vst1.8 {q0}, [%1]! \n" // store 16 bytes "bgt 1b \n" : "+r"(src), // %0 "+r"(dst), // %1 @@ -655,9 +655,9 @@ void DetileToYUY2_NEON(const uint8_t* src_y, int width) { asm volatile( "1: \n" - "vld1.8 q0, [%0], %4 \n" // Load 16 Y + "vld1.8 {q0}, [%0], %4 \n" // Load 16 Y "pld [%0, #1792] \n" - "vld1.8 q1, [%1], %5 \n" // Load 8 UV + "vld1.8 {q1}, [%1], %5 \n" // Load 8 UV "pld [%1, #1792] \n" "subs %3, %3, #16 \n" "vst2.8 {q0, q1}, [%2]! \n" @@ -681,8 +681,8 @@ void DetileToYUY2_NEON(const uint8_t* src_y, int width) { asm volatile( "1: \n" - "vld1.8 q0, [%0], %4 \n" // Load 16 Y - "vld1.8 q1, [%1], %5 \n" // Load 8 UV + "vld1.8 {q0}, [%0], %4 \n" // Load 16 Y + "vld1.8 {q1}, [%1], %5 \n" // Load 8 UV "subs %3, %3, #16 \n" "pld [%0, #1792] \n" "vzip.8 q0, q1 \n"