[FFmpeg-cvslog] lavfi: add link.current_pts field.
Nicolas George
git at videolan.org
Tue Dec 22 16:11:21 CET 2015
ffmpeg | branch: master | Nicolas George <george at nsup.org> | Thu Sep 24 10:05:42 2015 +0200| [b8b7d5ac6c793b12db2c90627a136766852593cb] | committer: Nicolas George
lavfi: add link.current_pts field.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b8b7d5ac6c793b12db2c90627a136766852593cb
---
libavfilter/avfilter.c | 2 ++
libavfilter/avfilter.h | 6 ++++++
2 files changed, 8 insertions(+)
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index fc6d49d..2911b48 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -238,6 +238,7 @@ int avfilter_config_links(AVFilterContext *filter)
}
inlink = link->src->nb_inputs ? link->src->inputs[0] : NULL;
+ link->current_pts =
link->current_pts_us = AV_NOPTS_VALUE;
switch (link->init_state) {
@@ -443,6 +444,7 @@ void ff_update_link_current_pts(AVFilterLink *link, int64_t pts)
{
if (pts == AV_NOPTS_VALUE)
return;
+ link->current_pts = pts;
link->current_pts_us = av_rescale_q(pts, link->time_base, AV_TIME_BASE_Q);
/* TODO use duration */
if (link->graph && link->age_index >= 0)
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index dec6a91..f2a934e 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -435,6 +435,12 @@ struct AVFilterLink {
/**
* Current timestamp of the link, as defined by the most recent
+ * frame(s), in link time_base units.
+ */
+ int64_t current_pts;
+
+ /**
+ * Current timestamp of the link, as defined by the most recent
* frame(s), in AV_TIME_BASE units.
*/
int64_t current_pts_us;
More information about the ffmpeg-cvslog
mailing list