summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfbarchard@google.com <fbarchard@google.com>2014-09-30 00:39:41 +0000
committerfbarchard@google.com <fbarchard@google.com>2014-09-30 00:39:41 +0000
commit1fb68cda67be73f8e573a163add7172ca7dfdd9f (patch)
treeb8308352fb727d3e5a495b12e892a2a19693bece
parentd33bf86b25a6dfab7b2a1c9a4a08e1046fd8326b (diff)
downloadlibyuv-1fb68cda67be73f8e573a163add7172ca7dfdd9f.tar.gz
port/fix CopyRow_AVX to gcc
BUG=363 TESTED=osx build R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/28619004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1098 16f28f9a-4ce2-e073-06de-1de4eb20be90
-rw-r--r--README.chromium2
-rw-r--r--include/libyuv/version.h2
-rw-r--r--source/row_posix.cc8
3 files changed, 6 insertions, 6 deletions
diff --git a/README.chromium b/README.chromium
index a2b74e7..957dd46 100644
--- a/README.chromium
+++ b/README.chromium
@@ -1,6 +1,6 @@
Name: libyuv
URL: http://code.google.com/p/libyuv/
-Version: 1097
+Version: 1098
License: BSD
License File: LICENSE
diff --git a/include/libyuv/version.h b/include/libyuv/version.h
index ca5be9b..58c08a1 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 1097
+#define LIBYUV_VERSION 1098
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
diff --git a/source/row_posix.cc b/source/row_posix.cc
index b21002a..9eb6780 100644
--- a/source/row_posix.cc
+++ b/source/row_posix.cc
@@ -3271,11 +3271,11 @@ void CopyRow_AVX(const uint8* src, uint8* dst, int count) {
asm volatile (
LABELALIGN
"1: \n"
- "movdqa " MEMACCESS(0) ",%%ymm0 \n"
- "movdqa " MEMACCESS2(0x20,0) ",%%ymm1 \n"
+ "vmovdqu " MEMACCESS(0) ",%%ymm0 \n"
+ "vmovdqu " MEMACCESS2(0x20,0) ",%%ymm1 \n"
"lea " MEMLEA(0x40,0) ",%0 \n"
- "movdqa %%ymm0," MEMACCESS(1) " \n"
- "movdqa %%ymm1," MEMACCESS2(0x20,1) " \n"
+ "vmovdqu %%ymm0," MEMACCESS(1) " \n"
+ "vmovdqu %%ymm1," MEMACCESS2(0x20,1) " \n"
"lea " MEMLEA(0x40,1) ",%1 \n"
"sub $0x40,%2 \n"
"jg 1b \n"