This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lavu/x86/cpu: Fix aesni detection
tags/n4.1
alexander schmid
Carl Eugen Hoyos
6 years ago
parent
93e157f40f
commit
b23c4a9dbd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavutil/x86/cpu.c
+ 1
- 1
libavutil/x86/cpu.c
View File
@@ -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 & 0x0
1
000000 )
if (ecx & 0x0
2
000000 )
rval |= AV_CPU_FLAG_AESNI;
#if HAVE_AVX
/* Check OXSAVE and AVX bits */
Write
Preview
Loading…
Cancel
Save