Commit ba54512a authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_mpdecimate: Fix missing ()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 42867522
......@@ -188,7 +188,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *cur)
decimate->ref = cur;
decimate->drop_count = FFMIN(-1, decimate->drop_count-1);
if (ret = ff_filter_frame(outlink, av_frame_clone(cur)) < 0)
if ((ret = ff_filter_frame(outlink, av_frame_clone(cur))) < 0)
return ret;
}
......
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