[vlc-commits] VLC_CPU_*: use hexadecimal
Rémi Denis-Courmont
git at videolan.org
Sat Oct 13 19:43:11 CEST 2012
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Oct 13 20:22:56 2012 +0300| [a125b0adbb48453b54f353f26db3c4d802a49d0d] | committer: Rémi Denis-Courmont
VLC_CPU_*: use hexadecimal
Hexadecimal bitmasks are easier to read.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a125b0adbb48453b54f353f26db3c4d802a49d0d
---
include/vlc_cpu.h | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/include/vlc_cpu.h b/include/vlc_cpu.h
index 5b108fc..aefb508 100644
--- a/include/vlc_cpu.h
+++ b/include/vlc_cpu.h
@@ -30,20 +30,20 @@ VLC_API unsigned vlc_CPU(void);
# if defined (__i386__) || defined (__x86_64__)
# define HAVE_FPU 1
-# define VLC_CPU_MMX 8
-# define VLC_CPU_3dNOW 16
-# define VLC_CPU_MMXEXT 32
-# define VLC_CPU_SSE 64
-# define VLC_CPU_SSE2 128
-# define VLC_CPU_SSE3 256
-# define VLC_CPU_SSSE3 512
-# define VLC_CPU_SSE4_1 1024
-# define VLC_CPU_SSE4_2 2048
-# define VLC_CPU_SSE4A 4096
-# define VLC_CPU_AVX 8192
-# define VLC_CPU_AVX2 16384
-# define VLC_CPU_XOP 32768
-# define VLC_CPU_FMA4 65536
+# define VLC_CPU_MMX 0x00000008
+# define VLC_CPU_3dNOW 0x00000010
+# define VLC_CPU_MMXEXT 0x00000020
+# define VLC_CPU_SSE 0x00000040
+# define VLC_CPU_SSE2 0x00000080
+# define VLC_CPU_SSE3 0x00000100
+# define VLC_CPU_SSSE3 0x00000200
+# define VLC_CPU_SSE4_1 0x00000400
+# define VLC_CPU_SSE4_2 0x00000800
+# define VLC_CPU_SSE4A 0x00001000
+# define VLC_CPU_AVX 0x00002000
+# define VLC_CPU_AVX2 0x00004000
+# define VLC_CPU_XOP 0x00008000
+# define VLC_CPU_FMA4 0x00010000
# if defined (__MMX__)
# define vlc_CPU_MMX() (1)
More information about the vlc-commits
mailing list