diff options
author | Nicolas George <george@nsup.org> | 2017-01-12 13:36:02 +0100 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2017-01-12 14:06:16 +0100 |
commit | aaae459a850ee367f5a0409a5f2ba8200a2b2fe5 (patch) | |
tree | 57ededb5f058db1cfedba11af11c74e71666ac03 | |
parent | 912969a33e313c57c906e87a7e2367b78a2160f4 (diff) | |
download | ffmpeg-aaae459a850ee367f5a0409a5f2ba8200a2b2fe5.tar.gz |
lavfi: reindent after previous commit.
-rw-r--r-- | libavfilter/avfilter.c | 7 |
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; |