Commit 2d99de66 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '3bfdee00'

* commit '3bfdee00':
  x86: dcadsp: Fix linking with yasm and optimizations disabled

Conflicts:
	libavcodec/x86/dcadsp_init.c

See: 206167a2Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 7011aab5 3bfdee00
......@@ -83,7 +83,7 @@ SYNTH_FILTER_FUNC(sse)
SYNTH_FILTER_FUNC(sse2)
SYNTH_FILTER_FUNC(avx)
SYNTH_FILTER_FUNC(fma3)
#endif
#endif /* HAVE_YASM */
av_cold void ff_synth_filter_init_x86(SynthFilterContext *s)
{
......@@ -104,5 +104,5 @@ av_cold void ff_synth_filter_init_x86(SynthFilterContext *s)
if (EXTERNAL_FMA3(cpu_flags)) {
s->synth_filter_float = synth_filter_fma3;
}
#endif
#endif /* HAVE_YASM */
}
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