From 0287a3cb5300d4fc5d81a87aea84bba506f7b544 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Thu, 12 Dec 2013 01:59:45 +0000 Subject: [PATCH] Fix for I422ToARGB which used movq instead of movd BUG=293 TESTED=LIBYUV_DISABLE_ASM=1 valgrind out/Debug/remoting_unittests --single-process-tests --gtest_filter=*YuvToRgb* R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/5669004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@911 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 a9345a287..f11363cc4 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 908 +Version: 911 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index b346978fa..3bb834f94 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 908 +#define LIBYUV_VERSION 911 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_posix.cc b/source/row_posix.cc index 5913de778..539d87153 100644 --- a/source/row_posix.cc +++ b/source/row_posix.cc @@ -2181,7 +2181,7 @@ struct { #define READYUV422 \ "movd " MEMACCESS([u_buf]) ",%%xmm0 \n" \ BUNDLEALIGN \ - MEMOPREG(movq, 0x00, [u_buf], [v_buf], 1, xmm1) \ + MEMOPREG(movd, 0x00, [u_buf], [v_buf], 1, xmm1) \ "lea " MEMLEA(0x4, [u_buf]) ",%[u_buf] \n" \ "punpcklbw %%xmm1,%%xmm0 \n" \ "punpcklwd %%xmm0,%%xmm0 \n"