提交 236f7948 编写于 作者: A Aurelien Jacobs

merge #if with if()

Originally committed as revision 25233 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册