From a3be4704262d57a69670de7cd0ad502540721186 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Fri, 22 Mar 2013 05:20:02 +0000 Subject: [PATCH] quick fix for sobel compile error BUG=201 TESTED=out\release\libyuv_unittest --gtest_filter=*Sobel* Review URL: https://webrtc-codereview.appspot.com/1226004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@615 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/row_posix.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.chromium b/README.chromium index 1271f3ea8..18d511886 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 614 +Version: 615 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index a55f748d5..653f70018 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 614 +#define LIBYUV_VERSION 615 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_posix.cc b/source/row_posix.cc index 34b24c52b..471f94585 100644 --- a/source/row_posix.cc +++ b/source/row_posix.cc @@ -4599,7 +4599,7 @@ void ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer, "lea 0x20(%0),%0 \n" "pshufb %%xmm5,%%xmm0 \n" "pshufb %%xmm5,%%xmm1 \n" - "punpckldq xmm1, xmm0 \n" + "punpckldq %%xmm1,%%xmm0 \n" "sub $0x8,%2 \n" "movq %%xmm0,(%1) \n" "lea 0x8(%1),%1 \n"