diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-28 14:09:35 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-30 18:51:51 +0200 |
commit | cdaec0b24045963487f121a7a191dcdb530d008d (patch) | |
tree | e06ea10aefa14b073fa64a6f02590b381fd6d89b /libavfilter | |
parent | a886b279a0f309b83b28612eb7661402cb1e41ef (diff) | |
download | ffmpeg-streaming-cdaec0b24045963487f121a7a191dcdb530d008d.zip ffmpeg-streaming-cdaec0b24045963487f121a7a191dcdb530d008d.tar.gz |
avfilter: x86: Use more precise compile template names
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/x86/yadif.c | 4 | ||||
-rw-r--r-- | libavfilter/x86/yadif_template.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/x86/yadif.c b/libavfilter/x86/yadif.c index 750db42..cdf13d3 100644 --- a/libavfilter/x86/yadif.c +++ b/libavfilter/x86/yadif.c @@ -32,7 +32,7 @@ DECLARE_ASM_CONST(16, const xmm_reg, pb_1) = {0x0101010101010101ULL, 0x010101010 DECLARE_ASM_CONST(16, const xmm_reg, pw_1) = {0x0001000100010001ULL, 0x0001000100010001ULL}; #if HAVE_SSSE3 -#define COMPILE_TEMPLATE_SSE 1 +#define COMPILE_TEMPLATE_SSE2 1 #define COMPILE_TEMPLATE_SSSE3 1 #undef RENAME #define RENAME(a) a ## _ssse3 @@ -44,7 +44,7 @@ DECLARE_ASM_CONST(16, const xmm_reg, pw_1) = {0x0001000100010001ULL, 0x000100010 #undef RENAME #define RENAME(a) a ## _sse2 #include "yadif_template.c" -#undef COMPILE_TEMPLATE_SSE +#undef COMPILE_TEMPLATE_SSE2 #endif #if HAVE_MMXEXT diff --git a/libavfilter/x86/yadif_template.c b/libavfilter/x86/yadif_template.c index 3e45f4f..02b0c9f 100644 --- a/libavfilter/x86/yadif_template.c +++ b/libavfilter/x86/yadif_template.c @@ -18,7 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifdef COMPILE_TEMPLATE_SSE +#ifdef COMPILE_TEMPLATE_SSE2 #define MM "%%xmm" #define MOV "movq" #define MOVQ "movdqa" |