From b089593610875b25c2995a96c2a00ddbc8080728 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Thu, 22 Jan 2015 18:17:44 +0000 Subject: [PATCH] xmm4 is unused - remove from NV21 BUG=324 TESTED=untested R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/40489004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1243 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/row_posix.cc | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.chromium b/README.chromium index 21ed29c89..6171411dc 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1243 +Version: 1244 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 72c6d70bf..341c431e9 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 1243 +#define LIBYUV_VERSION 1244 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_posix.cc b/source/row_posix.cc index 54782d3a2..635ba6495 100644 --- a/source/row_posix.cc +++ b/source/row_posix.cc @@ -1888,7 +1888,6 @@ void OMITFP NV21ToARGBRow_SSSE3(const uint8* y_buf, int width) { asm volatile ( "pcmpeqb %%xmm5,%%xmm5 \n" - "pxor %%xmm4,%%xmm4 \n" LABELALIGN "1: \n" READNV12 @@ -1911,7 +1910,7 @@ void OMITFP NV21ToARGBRow_SSSE3(const uint8* y_buf, : "memory", "cc" // Does not use r14. #if defined(__SSE2__) - , "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5" + , "xmm0", "xmm1", "xmm2", "xmm3", "xmm5" #endif ); }