[FFmpeg-devel] [PATCH] x86/cpu: check for OS support before enabling AVX2
James Almer
jamrial at gmail.com
Tue Mar 25 09:27:08 CET 2014
AV_CPU_FLAG_AVX is enabled at this point only if there's OS support.
Signed-off-by: James Almer <jamrial at gmail.com>
---
libavutil/x86/cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/x86/cpu.c b/libavutil/x86/cpu.c
index 356cd44..8ad4784 100644
--- a/libavutil/x86/cpu.c
+++ b/libavutil/x86/cpu.c
@@ -143,7 +143,7 @@ int ff_get_cpu_flags_x86(void)
if (max_std_level >= 7) {
cpuid(7, eax, ebx, ecx, edx);
#if HAVE_AVX2
- if (ebx & 0x00000020)
+ if ((rval & AV_CPU_FLAG_AVX) && (ebx & 0x00000020))
rval |= AV_CPU_FLAG_AVX2;
#endif /* HAVE_AVX2 */
/* BMI1/2 don't need OS support */
--
1.8.3.2
More information about the ffmpeg-devel
mailing list