diff options
author | Nicolas George <george@nsup.org> | 2015-09-24 10:05:42 +0200 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2015-12-22 15:55:00 +0100 |
commit | b8b7d5ac6c793b12db2c90627a136766852593cb (patch) | |
tree | 3107849ebc472f9078451cbeb4369e2d7230772c /libavfilter/avfilter.h | |
parent | d03eab34dd8a0da63591b1fbc56149595d3907f7 (diff) | |
download | ffmpeg-b8b7d5ac6c793b12db2c90627a136766852593cb.tar.gz |
lavfi: add link.current_pts field.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index dec6a9198a..f2a934eda0 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; |