Commit eeae8ac6 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Define new capabilities for SSE3 SSSE3 and SSE4 (4.1 is only useful)

parent 51f3faba
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment