00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include "libavutil/cpu.h"
00022 #include "libavutil/x86_cpu.h"
00023 #include "libavcodec/x86/dsputil_mmx.h"
00024 #include "libavfilter/yadif.h"
00025
00026 DECLARE_ASM_CONST(16, const xmm_reg, pb_1) = {0x0101010101010101ULL, 0x0101010101010101ULL};
00027 DECLARE_ASM_CONST(16, const xmm_reg, pw_1) = {0x0001000100010001ULL, 0x0001000100010001ULL};
00028
00029 #if HAVE_SSSE3
00030 #define COMPILE_TEMPLATE_SSE 1
00031 #define COMPILE_TEMPLATE_SSSE3 1
00032 #undef RENAME
00033 #define RENAME(a) a ## _ssse3
00034 #include "yadif_template.c"
00035 #undef COMPILE_TEMPLATE_SSSE3
00036 #endif
00037
00038 #if HAVE_SSE
00039 #undef RENAME
00040 #define RENAME(a) a ## _sse2
00041 #include "yadif_template.c"
00042 #undef COMPILE_TEMPLATE_SSE
00043 #endif
00044
00045 #if HAVE_MMX
00046 #undef RENAME
00047 #define RENAME(a) a ## _mmx
00048 #include "yadif_template.c"
00049 #endif