lavfi/vf_w3fdif: remove looping on request_frame().

pull/154/head
Nicolas George 9 years ago
parent 73a5546ba8
commit 86b8a82f4f
  1. 3
      libavfilter/vf_w3fdif.c

@ -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;
}

Loading…
Cancel
Save