Commit aaae459a authored by Nicolas George's avatar Nicolas George

lavfi: reindent after previous commit.

parent 912969a3
...@@ -1112,10 +1112,9 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame) ...@@ -1112,10 +1112,9 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame)
ff_inlink_process_commands(link, frame); ff_inlink_process_commands(link, frame);
dstctx->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame); dstctx->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame);
/* TODO reindent */ if (dstctx->is_disabled &&
if (dstctx->is_disabled && (dstctx->filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC))
(dstctx->filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC)) filter_frame = default_filter_frame;
filter_frame = default_filter_frame;
ret = filter_frame(link, frame); ret = filter_frame(link, frame);
link->frame_count_out++; link->frame_count_out++;
return ret; return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment