summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2013-04-03 17:43:53 +0200
committerNicolas George <nicolas.george@normalesup.org>2013-04-03 17:44:10 +0200
commit69d67fb622b67b2f978725d5fc07ab1571e632dd (patch)
treeb35157b51cd1ad4382868229964dd3628728ee46 /libavfilter
parent79d8cfacf07863500d4fedec669c49e2552c3876 (diff)
lavfi: reindent after last commit.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/avfilter.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index f62194136c..b689fbe9d4 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -326,16 +326,15 @@ int ff_request_frame(AVFilterLink *link)
av_assert0(!link->frame_requested);
link->frame_requested = 1;
while (link->frame_requested) {
- /* TODO reindent */
- if (link->srcpad->request_frame)
- ret = link->srcpad->request_frame(link);
- else if (link->src->inputs[0])
- ret = ff_request_frame(link->src->inputs[0]);
- if (ret == AVERROR_EOF && link->partial_buf) {
- AVFrame *pbuf = link->partial_buf;
- link->partial_buf = NULL;
- ret = ff_filter_frame_framed(link, pbuf);
- }
+ if (link->srcpad->request_frame)
+ ret = link->srcpad->request_frame(link);
+ else if (link->src->inputs[0])
+ ret = ff_request_frame(link->src->inputs[0]);
+ if (ret == AVERROR_EOF && link->partial_buf) {
+ AVFrame *pbuf = link->partial_buf;
+ link->partial_buf = NULL;
+ ret = ff_filter_frame_framed(link, pbuf);
+ }
if (ret < 0) {
link->frame_requested = 0;
if (ret == AVERROR_EOF)