# HG changeset patch # User henry # Date 1117888879 0 # Node ID 524d306ce0f32c4a0f5f479c08b0fad5c5dd8255 # Parent e813a3e431a8dcd3a4fc5cc0c2d7b4ad77481fdd disable mmx code for x86-64 diff -r e813a3e431a8 -r 524d306ce0f3 libmpcodecs/vf_fspp.c --- a/libmpcodecs/vf_fspp.c Sat Jun 04 07:58:40 2005 +0000 +++ b/libmpcodecs/vf_fspp.c Sat Jun 04 12:41:19 2005 +0000 @@ -38,6 +38,11 @@ #include "../config.h" +#ifdef ARCH_X86_64 +// until the mmx code is fixed to support x86-64 +#undef HAVE_MMX +#endif + #ifdef USE_LIBAVCODEC #include "../mp_msg.h"