Commit 1bf8fa75 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/x86/dsputil_init: fix cpu flag checks

Fixes linking failure with --disable-sse2
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a06dcde5
......@@ -693,12 +693,12 @@ av_cold void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx)
c->idct = ff_simple_idct_mmx;
c->idct_permutation_type = FF_SIMPLE_IDCT_PERM;
} else if (idct_algo == FF_IDCT_XVIDMMX) {
if (cpu_flags & AV_CPU_FLAG_SSE2) {
if (X86_SSE2(cpu_flags)) {
c->idct_put = ff_idct_xvid_sse2_put;
c->idct_add = ff_idct_xvid_sse2_add;
c->idct = ff_idct_xvid_sse2;
c->idct_permutation_type = FF_SSE2_IDCT_PERM;
} else if (cpu_flags & AV_CPU_FLAG_MMXEXT) {
} else if (X86_MMXEXT(cpu_flags)) {
c->idct_put = ff_idct_xvid_mmxext_put;
c->idct_add = ff_idct_xvid_mmxext_add;
c->idct = ff_idct_xvid_mmxext;
......
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