summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2017-01-12 13:36:02 +0100
committerNicolas George <george@nsup.org>2017-01-12 14:06:16 +0100
commitaaae459a850ee367f5a0409a5f2ba8200a2b2fe5 (patch)
tree57ededb5f058db1cfedba11af11c74e71666ac03 /libavfilter/avfilter.c
parent912969a33e313c57c906e87a7e2367b78a2160f4 (diff)
lavfi: reindent after previous commit.
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 91b483f264..c12d4912a8 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -1112,10 +1112,9 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame)
ff_inlink_process_commands(link, frame);
dstctx->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame);
- /* TODO reindent */
- if (dstctx->is_disabled &&
- (dstctx->filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC))
- filter_frame = default_filter_frame;
+ if (dstctx->is_disabled &&
+ (dstctx->filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC))
+ filter_frame = default_filter_frame;
ret = filter_frame(link, frame);
link->frame_count_out++;
return ret;