diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-11-12 22:07:13 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-11-12 22:07:13 +0100 |
commit | 23f589e073406f8c9d80092d3ff9ef8c22f27e63 (patch) | |
tree | 15bd2b7f4bbe4b518d906848c46624ede5de8560 | |
parent | ae4323548ae821db81b73bc66cf5a2f9885296cb (diff) | |
download | ffmpeg-23f589e073406f8c9d80092d3ff9ef8c22f27e63.tar.gz |
avfilter/vf_alphamerge: do not check for ret value if all wanted frames are present
It is not needed and may be uninitialized.
-rw-r--r-- | libavfilter/vf_alphamerge.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/libavfilter/vf_alphamerge.c b/libavfilter/vf_alphamerge.c index d22291d205..c5602b6227 100644 --- a/libavfilter/vf_alphamerge.c +++ b/libavfilter/vf_alphamerge.c @@ -154,13 +154,11 @@ static int activate(AVFilterContext *ctx) } if (s->main_frame && s->alpha_frame) { - if (ret > 0) { - draw_frame(ctx, s->main_frame, s->alpha_frame); - ret = ff_filter_frame(outlink, s->main_frame); - av_frame_free(&s->alpha_frame); - s->main_frame = NULL; - return ret; - } + draw_frame(ctx, s->main_frame, s->alpha_frame); + ret = ff_filter_frame(outlink, s->main_frame); + av_frame_free(&s->alpha_frame); + s->main_frame = NULL; + return ret; } FF_FILTER_FORWARD_STATUS(ctx->inputs[0], outlink); |