Browse Source

avfilter/vf_xfade: drop unused frames from inactive inputs

tags/n4.4
Paul B Mahol 4 years ago
parent
commit
2aece147d5
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavfilter/vf_xfade.c

+ 5
- 0
libavfilter/vf_xfade.c View File

@@ -1851,6 +1851,11 @@ static int xfade_activate(AVFilterContext *ctx)
FF_FILTER_FORWARD_STATUS_BACK_ALL(outlink, ctx);

if (s->xfade_is_over) {
if (!s->eof[0]) {
ret = ff_inlink_consume_frame(ctx->inputs[0], &in);
if (ret > 0)
av_frame_free(&in);
}
ret = ff_inlink_consume_frame(ctx->inputs[1], &in);
if (ret < 0) {
return ret;


Loading…
Cancel
Save