diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-06 02:41:49 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-06 02:41:49 +0200 |
commit | ba54512a10f88e21c26bb71bd64b12fa5d68b036 (patch) | |
tree | 50f478fe7bcbd6ea4d4cf72a39c8c03f7b1c665f /libavfilter | |
parent | 428675227908a4d1f32829214289234dc9b3659d (diff) | |
download | ffmpeg-ba54512a10f88e21c26bb71bd64b12fa5d68b036.tar.gz |
avfilter/vf_mpdecimate: Fix missing ()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_mpdecimate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_mpdecimate.c b/libavfilter/vf_mpdecimate.c index d86b5d89b3..5504ffebd6 100644 --- a/libavfilter/vf_mpdecimate.c +++ b/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; } |