mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
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->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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user