mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2026-02-16 23:29:52 +08:00
disable I411ToARGB assembly if _DEBUG for chromium, as well as DEBUG for other builds.
TBR=harryjin@google.com BUG=libyuv:533 Review URL: https://codereview.chromium.org/1527903002 .
This commit is contained in:
parent
ae55e41851
commit
77346fcb4a
@ -107,7 +107,8 @@ extern "C" {
|
|||||||
#define HAS_I400TOARGBROW_SSE2
|
#define HAS_I400TOARGBROW_SSE2
|
||||||
// The following functions fail on gcc/clang 32 bit.
|
// The following functions fail on gcc/clang 32 bit.
|
||||||
// caveat: clangcl uses row_win.cc which works.
|
// caveat: clangcl uses row_win.cc which works.
|
||||||
#if !defined(__i386__) || !defined(DEBUG) || defined(_MSC_VER)
|
#if !(defined(DEBUG) || defined(_DEBUG)) || !defined(__i386__) || \
|
||||||
|
defined(_MSC_VER)
|
||||||
// TODO(fbarchard): fix build error on x86 debug
|
// TODO(fbarchard): fix build error on x86 debug
|
||||||
// https://code.google.com/p/libyuv/issues/detail?id=524
|
// https://code.google.com/p/libyuv/issues/detail?id=524
|
||||||
#define HAS_I411TOARGBROW_SSSE3
|
#define HAS_I411TOARGBROW_SSSE3
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user