mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
llvm64 link error fix.
R=harryjin@google.com BUG=libyuv:485 Review URL: https://webrtc-codereview.appspot.com/58479004.
This commit is contained in:
parent
4dfdabb552
commit
d317a70c1d
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
*.pyc
|
*.pyc
|
||||||
.gn
|
.gn
|
||||||
|
pin-log.txt
|
||||||
build
|
build
|
||||||
buildtools
|
buildtools
|
||||||
chromium/.gclient.tmp
|
chromium/.gclient.tmp
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 1472
|
Version: 1473
|
||||||
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 1472
|
#define LIBYUV_VERSION 1473
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||||
|
|||||||
@ -2159,7 +2159,8 @@ void I422ToUYVYRow_C(const uint8* src_y,
|
|||||||
// Maximum temporary width for wrappers to process at a time, in pixels.
|
// Maximum temporary width for wrappers to process at a time, in pixels.
|
||||||
#define MAXTWIDTH 2048
|
#define MAXTWIDTH 2048
|
||||||
|
|
||||||
#if !defined(_MSC_VER) && defined(HAS_I422TORGB565ROW_SSSE3)
|
#if !(defined(_MSC_VER) && defined(_M_IX86)) && \
|
||||||
|
defined(HAS_I422TORGB565ROW_SSSE3)
|
||||||
// row_win.cc has asm version, but GCC uses 2 step wrapper.
|
// row_win.cc has asm version, but GCC uses 2 step wrapper.
|
||||||
void I422ToRGB565Row_SSSE3(const uint8* src_y,
|
void I422ToRGB565Row_SSSE3(const uint8* src_y,
|
||||||
const uint8* src_u,
|
const uint8* src_u,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user