Commit 27bae5aa authored by James Almer's avatar James Almer

x86/vf_transpose: fix cpuflags check

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent ccd9bca1
......@@ -39,11 +39,11 @@ av_cold void ff_transpose_init_x86(TransVtable *v, int pixstep)
{
int cpu_flags = av_get_cpu_flags();
if (EXTERNAL_SSE4(cpu_flags) && pixstep == 1) {
if (EXTERNAL_SSE2(cpu_flags) && pixstep == 1) {
v->transpose_8x8 = ff_transpose_8x8_8_sse2;
}
if (ARCH_X86_64 && EXTERNAL_SSE4(cpu_flags) && pixstep == 2) {
if (ARCH_X86_64 && EXTERNAL_SSE2(cpu_flags) && pixstep == 2) {
v->transpose_8x8 = ff_transpose_8x8_16_sse2;
}
}
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