Commit d3cb1404 authored by Nicolas George's avatar Nicolas George

lavfi: move ff_update_link_current_pts() into the utility functions.

It does not change anything for the existing filters and makes
better code fatrorization when future code will use the utility
functions.
parent 7910127a
...@@ -1117,7 +1117,6 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame) ...@@ -1117,7 +1117,6 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame)
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++;
ff_update_link_current_pts(link, frame->pts);
return ret; return ret;
fail: fail:
...@@ -1518,6 +1517,7 @@ int ff_inlink_check_available_samples(AVFilterLink *link, unsigned min) ...@@ -1518,6 +1517,7 @@ int ff_inlink_check_available_samples(AVFilterLink *link, unsigned min)
static void consume_update(AVFilterLink *link, const AVFrame *frame) static void consume_update(AVFilterLink *link, const AVFrame *frame)
{ {
ff_update_link_current_pts(link, frame->pts);
ff_inlink_process_commands(link, frame); ff_inlink_process_commands(link, frame);
link->dst->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame); link->dst->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame);
link->frame_count_out++; link->frame_count_out++;
......
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