Commit 2a5976f9 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix SSE4.2 detection

parent c9d65d22
......@@ -87,7 +87,7 @@ static void vlc_CPU_init (void)
if (!strcmp (cap, "sse4_1"))
core_caps |= VLC_CPU_SSE4_1;
if (!strcmp (cap, "sse4_2"))
core_caps |= VLC_CPU_SSE4_1;
core_caps |= VLC_CPU_SSE4_2;
if (!strcmp (cap, "sse4a"))
core_caps |= VLC_CPU_SSE4A;
if (!strcmp (cap, "avx"))
......
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