Commit 77346fcb authored by Frank Barchard's avatar Frank Barchard

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 .
parent ae55e418
......@@ -107,7 +107,8 @@ extern "C" {
#define HAS_I400TOARGBROW_SSE2
// The following functions fail on gcc/clang 32 bit.
// 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
// https://code.google.com/p/libyuv/issues/detail?id=524
#define HAS_I411TOARGBROW_SSSE3
......
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