Commit d9574069 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '1b932eb1'

* commit '1b932eb1':
  x86: add detection for FMA3 instruction set

Conflicts:
	configure
	libavutil/cpu.h
	libavutil/x86/cpu.c

See: a2af8eddMerged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 09824332 1b932eb1
......@@ -133,7 +133,7 @@ int ff_get_cpu_flags_x86(void)
xgetbv(0, eax, edx);
if ((eax & 0x6) == 0x6) {
rval |= AV_CPU_FLAG_AVX;
if (ecx&0x00001000)
if (ecx & 0x00001000)
rval |= AV_CPU_FLAG_FMA3;
}
}
......
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