diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-03-26 07:57:54 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-03-26 07:57:54 +0000 |
commit | a6e3a9ff23818247d4c38d34fab4421f62729be3 (patch) | |
tree | c593268098aec121eef6f24528f25cf7041f28dd /libswscale | |
parent | f72822d9e6ab88a26c04664871d883c836b3eb5f (diff) |
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
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/yuv2rgb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 6883f774e2..60764aeba1 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -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 |