Skip to content
Snippets Groups Projects
Commit b23c4a9d authored by alexander schmid's avatar alexander schmid Committed by Carl Eugen Hoyos
Browse files

lavu/x86/cpu: Fix aesni detection

parent 93e157f4
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ int ff_get_cpu_flags_x86(void)
rval |= AV_CPU_FLAG_SSE4;
if (ecx & 0x00100000 )
rval |= AV_CPU_FLAG_SSE42;
if (ecx & 0x01000000 )
if (ecx & 0x02000000 )
rval |= AV_CPU_FLAG_AESNI;
#if HAVE_AVX
/* Check OXSAVE and AVX bits */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment