avfilter/vf_mpdecimate: Fix missing ()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4286752279
commit
ba54512a10
@ -188,7 +188,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *cur)
|
|||||||
decimate->ref = cur;
|
decimate->ref = cur;
|
||||||
decimate->drop_count = FFMIN(-1, decimate->drop_count-1);
|
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;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user