Skip to content
Snippets Groups Projects
Commit f25b1c4b authored by Diego Biurrun's avatar Diego Biurrun
Browse files

HAVE_MMX2 implies HAVE_MMX, so checking the latter is enough.

Originally committed as revision 30961 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
parent 767738f7
No related branches found
No related tags found
No related merge requests found
...@@ -543,7 +543,7 @@ CLOSEYUV2RGBFUNC(1) ...@@ -543,7 +543,7 @@ CLOSEYUV2RGBFUNC(1)
SwsFunc ff_yuv2rgb_get_func_ptr(SwsContext *c) SwsFunc ff_yuv2rgb_get_func_ptr(SwsContext *c)
{ {
SwsFunc t = NULL; SwsFunc t = NULL;
#if (HAVE_MMX2 || HAVE_MMX) && CONFIG_GPL #if HAVE_MMX && CONFIG_GPL
t = ff_yuv2rgb_init_mmx(c); t = ff_yuv2rgb_init_mmx(c);
#endif #endif
#if HAVE_VIS #if HAVE_VIS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment