From 3e4d68f2b6d3351500f303d56dd9514d6e70b88a Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 2 May 2022 23:27:18 +0200 Subject: [PATCH] avfilter/vf_guided: remove excessive parentheses --- libavfilter/vf_guided.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavfilter/vf_guided.c b/libavfilter/vf_guided.c index 45e124b2ed..c4a3902042 100644 --- a/libavfilter/vf_guided.c +++ b/libavfilter/vf_guided.c @@ -342,9 +342,8 @@ static int process_frame(FFFrameSync *fs) return ff_filter_frame(outlink, main_frame); ret = filter_frame(ctx, &out_frame, main_frame, ref_frame); - if (ret < 0) { + if (ret < 0) return ret; - } av_frame_free(&main_frame); return ff_filter_frame(outlink, out_frame);