Commit 54255bf5 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Linux: add detection for SSE4A

parent 5c35f9d1
......@@ -99,6 +99,8 @@ static void vlc_CPU_init (void)
if (!strcmp (cap, "sse4_2"))
core_caps |= CPU_CAPABILITY_SSE4_1;
# endif
if (!strcmp (cap, "sse4a"))
core_caps |= CPU_CAPABILITY_SSE4A;
# ifndef __3dNOW__
if (!strcmp (cap, "3dnow"))
core_caps |= CPU_CAPABILITY_3DNOW;
......
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