[vlc-devel] commit: Define new capabilities for SSE3 SSSE3 and SSE4	(4.1 is only useful ) (Jean-Baptiste Kempf )
    git version control 
    git at videolan.org
       
    Tue Sep 22 14:46:18 CEST 2009
    
    
  
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Sep 22 12:12:59 2009 +0200| [eeae8ac67ef344206a052cef29d90658b99c6fe6] | committer: Jean-Baptiste Kempf 
Define new capabilities for SSE3 SSSE3 and SSE4 (4.1 is only useful)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=eeae8ac67ef344206a052cef29d90658b99c6fe6
---
 include/vlc_common.h |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/include/vlc_common.h b/include/vlc_common.h
index a8afe16..af18410 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)
    
    
More information about the vlc-devel
mailing list