Commit 236f7948 authored by Aurelien Jacobs's avatar Aurelien Jacobs

merge #if with if()

Originally committed as revision 25233 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2a5db1aa
......@@ -294,10 +294,8 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
if (args) sscanf(args, "%d:%d", &yadif->mode, &yadif->parity);
yadif->filter_line = filter_line_c;
#if HAVE_MMX
if (cpu_flags & AV_CPU_FLAG_MMX)
if (HAVE_MMX && cpu_flags & AV_CPU_FLAG_MMX)
yadif->filter_line = ff_yadif_filter_line_mmx;
#endif
av_log(ctx, AV_LOG_INFO, "mode:%d parity:%d\n", yadif->mode, yadif->parity);
......
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