mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
fix linux build
BUG=none TEST=try Review URL: https://webrtc-codereview.appspot.com/1286007 git-svn-id: http://libyuv.googlecode.com/svn/trunk@650 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
parent
54f0b67c46
commit
16fc2c6a54
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 649
|
Version: 650
|
||||||
License: BSD
|
License: BSD
|
||||||
License File: LICENSE
|
License File: LICENSE
|
||||||
|
|
||||||
|
|||||||
@ -11,6 +11,6 @@
|
|||||||
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
||||||
#define INCLUDE_LIBYUV_VERSION_H_
|
#define INCLUDE_LIBYUV_VERSION_H_
|
||||||
|
|
||||||
#define LIBYUV_VERSION 649
|
#define LIBYUV_VERSION 650
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||||
|
|||||||
@ -932,7 +932,7 @@ void ScaleARGBFilterRows_SSSE3(uint8* dst_argb, const uint8* src_argb,
|
|||||||
#define HAS_SCALEARGBCOLS_SSE2
|
#define HAS_SCALEARGBCOLS_SSE2
|
||||||
static void ScaleARGBCols_SSE2(uint8* dst_argb, const uint8* src_argb,
|
static void ScaleARGBCols_SSE2(uint8* dst_argb, const uint8* src_argb,
|
||||||
int dst_width, int x, int dx) {
|
int dst_width, int x, int dx) {
|
||||||
intptr_t x0, x1;
|
intptr_t x0 = 0, x1 = 0;
|
||||||
asm volatile (
|
asm volatile (
|
||||||
"movd %5,%%xmm2 \n"
|
"movd %5,%%xmm2 \n"
|
||||||
"movd %6,%%xmm3 \n"
|
"movd %6,%%xmm3 \n"
|
||||||
@ -945,7 +945,6 @@ static void ScaleARGBCols_SSE2(uint8* dst_argb, const uint8* src_argb,
|
|||||||
"punpckldq %%xmm3,%%xmm3 \n"
|
"punpckldq %%xmm3,%%xmm3 \n"
|
||||||
"paddd %%xmm3,%%xmm3 \n"
|
"paddd %%xmm3,%%xmm3 \n"
|
||||||
"pextrw $0x3,%%xmm2,%4 \n"
|
"pextrw $0x3,%%xmm2,%4 \n"
|
||||||
"lea 0x0(%2),%2 \n"
|
|
||||||
|
|
||||||
".p2align 4 \n"
|
".p2align 4 \n"
|
||||||
"2: \n"
|
"2: \n"
|
||||||
@ -1001,7 +1000,7 @@ CONST uvec8 kShuffleFractions = {
|
|||||||
#define HAS_SCALEARGBFILTERCOLS_SSSE3
|
#define HAS_SCALEARGBFILTERCOLS_SSSE3
|
||||||
static void ScaleARGBFilterCols_SSSE3(uint8* dst_argb, const uint8* src_argb,
|
static void ScaleARGBFilterCols_SSSE3(uint8* dst_argb, const uint8* src_argb,
|
||||||
int dst_width, int x, int dx) {
|
int dst_width, int x, int dx) {
|
||||||
intptr_t x0, x1;
|
intptr_t x0 = 0, x1 = 0;
|
||||||
asm volatile (
|
asm volatile (
|
||||||
"movdqa %0,%%xmm4 \n"
|
"movdqa %0,%%xmm4 \n"
|
||||||
"movdqa %1,%%xmm5 \n"
|
"movdqa %1,%%xmm5 \n"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user