From 98eb102bead73b6fd16a11c0fa7bdc85be69246f Mon Sep 17 00:00:00 2001 From: Frank Barchard Date: Fri, 6 Nov 2015 11:38:21 -0800 Subject: [PATCH] set d19 alpha on inner loop TBR=harryjin@google.com BUG=libyuv:521 Review URL: https://codereview.chromium.org/1429263004 . --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/row_neon.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.chromium b/README.chromium index 66b60a0f9..41f3a8024 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1532 +Version: 1533 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 610c8b81b..750ad08cd 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 1532 +#define LIBYUV_VERSION 1533 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_neon.cc b/source/row_neon.cc index 256785ddd..f4f2e8559 100644 --- a/source/row_neon.cc +++ b/source/row_neon.cc @@ -265,11 +265,11 @@ void I422ToRGBARow_NEON(const uint8* src_y, int width) { asm volatile ( YUVTORGB_SETUP - "vmov.u8 d19, #255 \n" "1: \n" READYUV422 YUVTORGB "subs %4, %4, #8 \n" + "vmov.u8 d19, #255 \n" // d19 modified by YUVTORGB MEMACCESS(3) "vst4.8 {d19, d20, d21, d22}, [%3]! \n" "bgt 1b \n"