]> git.sesse.net Git - ffmpeg/commitdiff
swscale/x86/yuv2rgb: Remove unused ASM constants
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Fri, 19 Feb 2021 03:31:02 +0000 (04:31 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Wed, 24 Feb 2021 08:43:14 +0000 (09:43 +0100)
mmx_grnmask is unused since 531f97b0c32d1d421f3ac614e002c53951658115,
the other constants since e934194b6a4159b7960cabefb0dd8b998c1961e8.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libswscale/x86/yuv2rgb.c

index 2143026a0def26743c2a4c2c818182b6d6b0d79d..47f45bd7c2c24732baec66bd349859f8d5452091 100644 (file)
 
 #define DITHER1XBPP // only for MMX
 
-/* hope these constant values are cache line aligned */
-DECLARE_ASM_CONST(8, uint64_t, mmx_00ffw)   = 0x00ff00ff00ff00ffULL;
-DECLARE_ASM_CONST(8, uint64_t, mmx_redmask) = 0xf8f8f8f8f8f8f8f8ULL;
-DECLARE_ASM_CONST(8, uint64_t, mmx_grnmask) = 0xfcfcfcfcfcfcfcfcULL;
-DECLARE_ASM_CONST(8, uint64_t, pb_e0) = 0xe0e0e0e0e0e0e0e0ULL;
-DECLARE_ASM_CONST(8, uint64_t, pb_03) = 0x0303030303030303ULL;
-DECLARE_ASM_CONST(8, uint64_t, pb_07) = 0x0707070707070707ULL;
-
 //MMX versions
 #if HAVE_MMX
 #undef RENAME