Bug 1027323 - Fix the libyuv linking issues with clang-cl; r=jesup

This commit is contained in:
Jeff Muizelaar 2014-06-21 08:56:48 -04:00
parent fb71c96b76
commit 98c189f1bf

View File

@ -2024,7 +2024,7 @@ void I422ToUYVYRow_C(const uint8* src_y,
#if !defined(LIBYUV_DISABLE_X86) && defined(HAS_I422TOARGBROW_SSSE3)
// row_win.cc has asm version, but GCC uses 2 step wrapper.
#if defined(__x86_64__) || defined(__i386__)
#if (defined(__x86_64__) || defined(__i386__)) && !defined(_MSC_VER)
void I422ToRGB565Row_SSSE3(const uint8* src_y,
const uint8* src_u,
const uint8* src_v,