HAVE_MMX2 implies HAVE_MMX, so checking the latter is enough.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30961 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-03-26 07:57:54 +00:00
parent f72822d9e6
commit a6e3a9ff23
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ CLOSEYUV2RGBFUNC(1)
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