lavfi/vf_fps: check flow before sending more frames

Analyzed by Paul B Mahol <onemda@gmail.com>.

Fixes OOM in #9081.
This commit is contained in:
Nicolas George 2022-02-19 16:14:03 +01:00
parent 531d09fb2d
commit 01440e2588

View File

@ -351,7 +351,7 @@ static int activate(AVFilterContext *ctx)
if (s->frames_count > 0) {
ret = write_frame(ctx, s, outlink, &again);
/* Couldn't generate a frame, so schedule us to perform another step */
if (again)
if (again && ff_inoutlink_check_flow(inlink, outlink))
ff_filter_set_ready(ctx, 100);
return ret;
}