Browse Source

avfilter/vf_mpdecimate: Fix missing ()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
ba54512a10
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_mpdecimate.c

+ 1
- 1
libavfilter/vf_mpdecimate.c 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;
}



Loading…
Cancel
Save