diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-04-14 22:03:45 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-04-14 22:16:47 +0200 |
commit | 6216fc70b74e01a5272085329aa92f5ac797f9cf (patch) | |
tree | 847a55dc56ae6c366b0e018089de94d7cdefc7c2 /libswscale/x86/rgb2rgb.c | |
parent | 33a0421bbaa64f4e9c3d852b7f225ede8dad1388 (diff) | |
download | ffmpeg-6216fc70b74e01a5272085329aa92f5ac797f9cf.tar.gz |
swscale: simplify rgb2rgb templating
MMX is always built. Drop the ifdefs
Diffstat (limited to 'libswscale/x86/rgb2rgb.c')
-rw-r--r-- | libswscale/x86/rgb2rgb.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libswscale/x86/rgb2rgb.c b/libswscale/x86/rgb2rgb.c index a931810ca1..e84bc1bcc9 100644 --- a/libswscale/x86/rgb2rgb.c +++ b/libswscale/x86/rgb2rgb.c @@ -81,15 +81,12 @@ DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL; //Note: We have C, MMX, MMX2, 3DNOW versions, there is no 3DNOW + MMX2 one. -#define COMPILE_TEMPLATE_MMX 0 #define COMPILE_TEMPLATE_MMX2 0 #define COMPILE_TEMPLATE_AMD3DNOW 0 #define COMPILE_TEMPLATE_SSE2 0 //MMX versions #undef RENAME -#undef COMPILE_TEMPLATE_MMX -#define COMPILE_TEMPLATE_MMX 1 #define RENAME(a) a ## _MMX #include "rgb2rgb_template.c" |