Browse Source

avfilter/vf_random: fix crash

Fixes #8235.
tags/n4.3
Paul B Mahol 6 years ago
parent
commit
b67af536be
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavfilter/vf_random.c

+ 5
- 0
libavfilter/vf_random.c View File

@@ -97,8 +97,13 @@ static int request_frame(AVFilterLink *outlink)

ret = ff_request_frame(ctx->inputs[0]);

next:
if (ret == AVERROR_EOF && !ctx->is_disabled && s->nb_frames > 0) {
AVFrame *out = s->frames[s->nb_frames - 1];
if (!out) {
s->nb_frames--;
goto next;
}
out->pts = s->pts[s->flush_idx++];
ret = ff_filter_frame(outlink, out);
s->frames[s->nb_frames - 1] = NULL;


Loading…
Cancel
Save