diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-08 19:16:20 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-31 00:37:42 +0100 |
commit | 652f5185945c8405fc57aed353286858df8d066f (patch) | |
tree | 9f8c506e35db936ad852bced9d309783cebd2f17 /libswscale/x86/rgb2rgb.c | |
parent | 04581c8c77ce779e4e70684ac45302972766be0f (diff) | |
download | ffmpeg-652f5185945c8405fc57aed353286858df8d066f.tar.gz |
x86: mmx2 ---> mmxext in comments and messages
Diffstat (limited to 'libswscale/x86/rgb2rgb.c')
-rw-r--r-- | libswscale/x86/rgb2rgb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/x86/rgb2rgb.c b/libswscale/x86/rgb2rgb.c index 59626804cc..486f436702 100644 --- a/libswscale/x86/rgb2rgb.c +++ b/libswscale/x86/rgb2rgb.c @@ -84,7 +84,7 @@ DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL; #define RV ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5)) #define RU ((int)(-0.148*(1<<RGB2YUV_SHIFT)+0.5)) -//Note: We have C, MMX, MMX2, 3DNOW versions, there is no 3DNOW + MMX2 one. +// Note: We have C, MMX, MMXEXT, 3DNOW versions, there is no 3DNOW + MMXEXT one. #define COMPILE_TEMPLATE_MMXEXT 0 #define COMPILE_TEMPLATE_AMD3DNOW 0 @@ -95,7 +95,7 @@ DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL; #define RENAME(a) a ## _MMX #include "rgb2rgb_template.c" -//MMX2 versions +// MMXEXT versions #undef RENAME #undef COMPILE_TEMPLATE_MMXEXT #define COMPILE_TEMPLATE_MMXEXT 1 @@ -123,7 +123,7 @@ DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL; /* RGB15->RGB16 original by Strepto/Astral ported to gcc & bugfixed : A'rpi - MMX2, 3DNOW optimization by Nick Kurshev + MMXEXT, 3DNOW optimization by Nick Kurshev 32-bit C version, and and&add trick by Michael Niedermayer */ |