avfilter/vf_mpdecimate: Fix missing ()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/130/head
Michael Niedermayer 10 years ago
parent 4286752279
commit ba54512a10
  1. 2
      libavfilter/vf_mpdecimate.c

@ -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…
Cancel
Save