Commit 11ba0c82 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '5ab03e41'

* commit '5ab03e41':
  x86: h264dsp: Fix link failure with optimizations disabled
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 3eae34d5 5ab03e41
......@@ -213,7 +213,7 @@ av_cold void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth,
#if HAVE_YASM
int cpu_flags = av_get_cpu_flags();
if (chroma_format_idc <= 1 && EXTERNAL_MMXEXT(cpu_flags))
if (EXTERNAL_MMXEXT(cpu_flags) && chroma_format_idc <= 1)
c->h264_loop_filter_strength = ff_h264_loop_filter_strength_mmxext;
if (bit_depth == 8) {
......
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