Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
a125b0ad
Commit
a125b0ad
authored
Oct 13, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VLC_CPU_*: use hexadecimal
Hexadecimal bitmasks are easier to read.
parent
01924381
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
include/vlc_cpu.h
include/vlc_cpu.h
+14
-14
No files found.
include/vlc_cpu.h
View file @
a125b0ad
...
@@ -30,20 +30,20 @@ VLC_API unsigned vlc_CPU(void);
...
@@ -30,20 +30,20 @@ VLC_API unsigned vlc_CPU(void);
# if defined (__i386__) || defined (__x86_64__)
# if defined (__i386__) || defined (__x86_64__)
# define HAVE_FPU 1
# define HAVE_FPU 1
# define VLC_CPU_MMX 8
# define VLC_CPU_MMX
0x0000000
8
# define VLC_CPU_3dNOW
16
# define VLC_CPU_3dNOW
0x00000010
# define VLC_CPU_MMXEXT
32
# define VLC_CPU_MMXEXT
0x00000020
# define VLC_CPU_SSE
64
# define VLC_CPU_SSE
0x00000040
# define VLC_CPU_SSE2
128
# define VLC_CPU_SSE2
0x00000080
# define VLC_CPU_SSE3
256
# define VLC_CPU_SSE3
0x00000100
# define VLC_CPU_SSSE3
512
# define VLC_CPU_SSSE3
0x00000200
# define VLC_CPU_SSE4_1
1024
# define VLC_CPU_SSE4_1
0x00000400
# define VLC_CPU_SSE4_2
2048
# define VLC_CPU_SSE4_2
0x00000800
# define VLC_CPU_SSE4A
4096
# define VLC_CPU_SSE4A
0x00001000
# define VLC_CPU_AVX
8192
# define VLC_CPU_AVX
0x00002000
# define VLC_CPU_AVX2
16384
# define VLC_CPU_AVX2
0x00004000
# define VLC_CPU_XOP
32768
# define VLC_CPU_XOP
0x00008000
# define VLC_CPU_FMA4
65536
# define VLC_CPU_FMA4
0x00010000
# if defined (__MMX__)
# if defined (__MMX__)
# define vlc_CPU_MMX() (1)
# define vlc_CPU_MMX() (1)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment