Bug 611960 - bustage on Win64 after bug 583138 is landed. r=roc, a=roc

This commit is contained in:
Makoto Kato 2010-11-14 00:42:02 +09:00
parent bcd49c3a7b
commit 8466507cd8
2 changed files with 2 additions and 2 deletions

View File

@ -2409,7 +2409,7 @@ index b5049a5..627b8cb 100644
extern "C" {
-
-#if USE_MMX
+#if defined(MOZILLA_COMPILE_WITH_SSE2)
+#if defined(MOZILLA_COMPILE_WITH_SSE2) && defined(_M_IX86)
__declspec(naked)
void FastConvertYUVToRGB32Row(const uint8* y_buf,
const uint8* u_buf,

View File

@ -12,7 +12,7 @@
#define kCoefficientsRgbV kCoefficientsRgbY + 4096
extern "C" {
#if defined(MOZILLA_COMPILE_WITH_SSE2)
#if defined(MOZILLA_COMPILE_WITH_SSE2) && defined(_M_IX86)
__declspec(naked)
void FastConvertYUVToRGB32Row(const uint8* y_buf,
const uint8* u_buf,