]> git.sesse.net Git - vlc/commitdiff
Define new capabilities for SSE3 SSSE3 and SSE4 (4.1 is only useful)
authorJean-Baptiste Kempf <jb@videolan.org>
Tue, 22 Sep 2009 10:12:59 +0000 (12:12 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Tue, 22 Sep 2009 10:12:59 +0000 (12:12 +0200)
include/vlc_common.h

index a8afe161132990c2e5c00345fc352428864db965..af18410e40245321fabadd3b3e7ff1543a5bed83 100644 (file)
@@ -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)