Commit b67af536 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_random: fix crash

Fixes #8235.
parent f6df99db
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment