Skip to content
Snippets Groups Projects
Commit 785ac437 authored by Nicolas George's avatar Nicolas George
Browse files

lavfi/af_asyncts: remove looping on request_frame().

parent a08fb398
No related branches found
No related tags found
No related merge requests found
......@@ -139,8 +139,7 @@ static int request_frame(AVFilterLink *link)
int nb_samples;
s->got_output = 0;
while (ret >= 0 && !s->got_output)
ret = ff_request_frame(ctx->inputs[0]);
ret = ff_request_frame(ctx->inputs[0]);
/* flush the fifo */
if (ret == AVERROR_EOF) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment