summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfbarchard@google.com <fbarchard@google.com>2014-10-09 17:54:43 +0000
committerfbarchard@google.com <fbarchard@google.com>2014-10-09 17:54:43 +0000
commit4d46be3930146bf9bdff7c17545c5d47361d3a80 (patch)
tree524664ff70d419724c419e06f81bb59a46efb914
parent0eb196f8db5b53d8593857b47e5a9701d1fc0f29 (diff)
downloadlibyuv-4d46be3930146bf9bdff7c17545c5d47361d3a80.tar.gz
Declare CopyRow_AVX as using xmm usage, not ymm. Should resolve chromium build error for Android Atom.
BUG=libyuv:369 TESTED=untested R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/31609004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1118 16f28f9a-4ce2-e073-06de-1de4eb20be90
-rw-r--r--README.chromium2
-rw-r--r--include/libyuv/version.h2
-rw-r--r--source/row_posix.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.chromium b/README.chromium
index eccd8c6..c3dc625 100644
--- a/README.chromium
+++ b/README.chromium
@@ -1,6 +1,6 @@
Name: libyuv
URL: http://code.google.com/p/libyuv/
-Version: 1116
+Version: 1118
License: BSD
License File: LICENSE
diff --git a/include/libyuv/version.h b/include/libyuv/version.h
index c1f4bda..ac10ab5 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 1116
+#define LIBYUV_VERSION 1118
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
diff --git a/source/row_posix.cc b/source/row_posix.cc
index 55aa9a1..9e514dd 100644
--- a/source/row_posix.cc
+++ b/source/row_posix.cc
@@ -2242,7 +2242,7 @@ void CopyRow_AVX(const uint8* src, uint8* dst, int count) {
:
: "memory", "cc"
#if defined(__SSE2__)
- , "ymm0", "ymm1"
+ , "xmm0", "xmm1"
#endif
);
}