Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2015-10-02 17:17:41 +0300
committerNicolas George <george@nsup.org>2015-10-07 20:05:13 +0300
commit86b8a82f4f9c181189bf4309e67544caf233ad54 (patch)
treede44483ebdfe84679748497e49f297e33d5120e4 /libavfilter/vf_w3fdif.c
parent73a5546ba8e211dd23339be285f1786c0001b25c (diff)
lavfi/vf_w3fdif: remove looping on request_frame().
Diffstat (limited to 'libavfilter/vf_w3fdif.c')
-rw-r--r--libavfilter/vf_w3fdif.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/vf_w3fdif.c b/libavfilter/vf_w3fdif.c
index 849a3c08b4..e394d552e9 100644
--- a/libavfilter/vf_w3fdif.c
+++ b/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;
}