summaryrefslogtreecommitdiffstats
path: root/libavfilter
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-04-06 02:41:49 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-04-06 02:41:49 +0200
commitba54512a10f88e21c26bb71bd64b12fa5d68b036 (patch)
tree50f478fe7bcbd6ea4d4cf72a39c8c03f7b1c665f /libavfilter
parent428675227908a4d1f32829214289234dc9b3659d (diff)
downloadffmpeg-streaming-ba54512a10f88e21c26bb71bd64b12fa5d68b036.zip
ffmpeg-streaming-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_mpdecimate.c b/libavfilter/vf_mpdecimate.c
index d86b5d8..5504ffe 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;
}
OpenPOWER on IntegriCloud