# HG changeset patch # User diego # Date 1269590274 0 # Node ID b1d63f9600c05d0217583a5d070322f68668cc2f # Parent be200e917ae1e1ee78fa7c0670ecc0412b0d64a1 HAVE_MMX2 implies HAVE_MMX, so checking the latter is enough. diff -r be200e917ae1 -r b1d63f9600c0 libswscale/yuv2rgb.c --- a/libswscale/yuv2rgb.c Thu Mar 25 19:53:05 2010 +0000 +++ b/libswscale/yuv2rgb.c Fri Mar 26 07:57:54 2010 +0000 @@ -543,7 +543,7 @@ SwsFunc ff_yuv2rgb_get_func_ptr(SwsContext *c) { SwsFunc t = NULL; -#if (HAVE_MMX2 || HAVE_MMX) && CONFIG_GPL +#if HAVE_MMX && CONFIG_GPL t = ff_yuv2rgb_init_mmx(c); #endif #if HAVE_VIS