diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-24 18:28:40 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-26 09:31:02 -0400 |
commit | 522d65ba259a263d0cd91db27b79c07e13d7fcf2 (patch) | |
tree | 516efa4285e51bca9fad2f606c7a2d8c2f4aa196 /libswscale/x86/rgb2rgb.c | |
parent | 836b82e3c9fd4ac2b5240e143fbd9ef6118cc12b (diff) | |
download | ffmpeg-522d65ba259a263d0cd91db27b79c07e13d7fcf2.tar.gz |
rgb2rgb: remove duplicate mmx/mmx2/3dnow/sse2 functions.
Many functions have such a prefix, but do not actually use any
instructions or features from that set, thus giving the false
impression that swscale is highly optimized for a particular
system, whereas in reality it is not.
Diffstat (limited to 'libswscale/x86/rgb2rgb.c')
-rw-r--r-- | libswscale/x86/rgb2rgb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/x86/rgb2rgb.c b/libswscale/x86/rgb2rgb.c index cf901affe6..97c50dd636 100644 --- a/libswscale/x86/rgb2rgb.c +++ b/libswscale/x86/rgb2rgb.c @@ -111,7 +111,7 @@ DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL; #undef COMPILE_TEMPLATE_SSE2 #undef COMPILE_TEMPLATE_AMD3DNOW #define COMPILE_TEMPLATE_MMX2 0 -#define COMPILE_TEMPLATE_SSE2 1 +#define COMPILE_TEMPLATE_SSE2 0 #define COMPILE_TEMPLATE_AMD3DNOW 1 #define RENAME(a) a ## _3DNOW #include "rgb2rgb_template.c" |