x86/vf_transpose: fix cpuflags check

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2019-10-21 17:01:39 -03:00
parent ccd9bca15a
commit 27bae5aaca
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}