avfilter/vf_alphamerge: do not check for ret value if all wanted frames are present
It is not needed and may be uninitialized.
This commit is contained in:
parent
ae4323548a
commit
23f589e073
@ -154,13 +154,11 @@ static int activate(AVFilterContext *ctx)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (s->main_frame && s->alpha_frame) {
|
if (s->main_frame && s->alpha_frame) {
|
||||||
if (ret > 0) {
|
draw_frame(ctx, s->main_frame, s->alpha_frame);
|
||||||
draw_frame(ctx, s->main_frame, s->alpha_frame);
|
ret = ff_filter_frame(outlink, s->main_frame);
|
||||||
ret = ff_filter_frame(outlink, s->main_frame);
|
av_frame_free(&s->alpha_frame);
|
||||||
av_frame_free(&s->alpha_frame);
|
s->main_frame = NULL;
|
||||||
s->main_frame = NULL;
|
return ret;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
FF_FILTER_FORWARD_STATUS(ctx->inputs[0], outlink);
|
FF_FILTER_FORWARD_STATUS(ctx->inputs[0], outlink);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user