Commit 86b8a82f authored by Nicolas George's avatar Nicolas George

lavfi/vf_w3fdif: remove looping on request_frame().

parent 73a5546b
......@@ -354,7 +354,7 @@ static int request_frame(AVFilterLink *outlink)
AVFilterContext *ctx = outlink->src;
W3FDIFContext *s = ctx->priv;
do {
/* TODO reindent */
int ret;
if (s->eof)
......@@ -372,7 +372,6 @@ static int request_frame(AVFilterLink *outlink)
} else if (ret < 0) {
return ret;
}
} while (!s->cur);
return 0;
}
......
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