diff --git a/README.chromium b/README.chromium index a2b74e743..957dd46af 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 ca5be9be2..58c08a1da 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 b21002af7..9eb67806a 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"