avfilter/vf_mpdecimate: Fix missing ()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-04-06 02:41:49 +02:00
parent 4286752279
commit ba54512a10
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}