From eeae8ac67ef344206a052cef29d90658b99c6fe6 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Tue, 22 Sep 2009 12:12:59 +0200 Subject: [PATCH] Define new capabilities for SSE3 SSSE3 and SSE4 (4.1 is only useful) --- include/vlc_common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/vlc_common.h b/include/vlc_common.h index a8afe16113..af18410e40 100644 --- a/include/vlc_common.h +++ b/include/vlc_common.h @@ -794,6 +794,9 @@ VLC_EXPORT(int, vlc_wclosedir, ( void *_p_dir )); #define CPU_CAPABILITY_MMXEXT (1<<5) #define CPU_CAPABILITY_SSE (1<<6) #define CPU_CAPABILITY_SSE2 (1<<7) +#define CPU_CAPABILITY_SSE3 (1<<8) +#define CPU_CAPABILITY_SSSE3 (1<<9) +#define CPU_CAPABILITY_SSE4 (1<<10) #define CPU_CAPABILITY_ALTIVEC (1<<16) #define CPU_CAPABILITY_NEON (1<<24) #define CPU_CAPABILITY_FPU (1<<31) -- 2.39.5