Index: media/base/yuv_convert.cc |
=================================================================== |
--- media/base/yuv_convert.cc (revision 15091) |
+++ media/base/yuv_convert.cc (working copy) |
@@ -77,8 +77,13 @@ |
// C++ code provided as a fall back. |
// Compile with /DUSE_MMX=0 |
#ifndef USE_MMX |
+ |
+#ifdef ARCH_CPU_ARM_FAMILY |
Mark Mentovai
2009/05/06 16:18:16
I think that this should be flipped, right? We wa
|
+#define USE_MMX 0 |
+#else |
#define USE_MMX 1 |
#endif |
+#endif |
namespace media { |
@@ -670,4 +675,3 @@ |
} // namespace media |
- |