Commit 16fc2c6a authored by fbarchard@google.com's avatar fbarchard@google.com

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
parent 54f0b67c
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 649
Version: 650
License: BSD
License File: LICENSE
......
......@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 649
#define LIBYUV_VERSION 650
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
......@@ -932,7 +932,7 @@ void ScaleARGBFilterRows_SSSE3(uint8* dst_argb, const uint8* src_argb,
#define HAS_SCALEARGBCOLS_SSE2
static void ScaleARGBCols_SSE2(uint8* dst_argb, const uint8* src_argb,
int dst_width, int x, int dx) {
intptr_t x0, x1;
intptr_t x0 = 0, x1 = 0;
asm volatile (
"movd %5,%%xmm2 \n"
"movd %6,%%xmm3 \n"
......@@ -945,7 +945,6 @@ static void ScaleARGBCols_SSE2(uint8* dst_argb, const uint8* src_argb,
"punpckldq %%xmm3,%%xmm3 \n"
"paddd %%xmm3,%%xmm3 \n"
"pextrw $0x3,%%xmm2,%4 \n"
"lea 0x0(%2),%2 \n"
".p2align 4 \n"
"2: \n"
......@@ -1001,7 +1000,7 @@ CONST uvec8 kShuffleFractions = {
#define HAS_SCALEARGBFILTERCOLS_SSSE3
static void ScaleARGBFilterCols_SSSE3(uint8* dst_argb, const uint8* src_argb,
int dst_width, int x, int dx) {
intptr_t x0, x1;
intptr_t x0 = 0, x1 = 0;
asm volatile (
"movdqa %0,%%xmm4 \n"
"movdqa %1,%%xmm5 \n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment