Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2015-09-24 10:30:05 +0300
committerNicolas George <george@nsup.org>2015-12-22 17:55:00 +0300
commitd03eab34dd8a0da63591b1fbc56149595d3907f7 (patch)
treef60838fc0f84308c30a59262b7f2af6b893b5b43 /libavfilter/avfilter.h
parent63f7bee75221a205c97e0c3948bc24906653e1b7 (diff)
lavfi: rename link.current_pts to current_pts_us.
This field is used for fast comparison between link ages, it is in AV_TIME_BASE units, in other words microseconds, µs =~ us. Renaming it allows a second field in link time base units.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index dca02945f6..dec6a9198a 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -437,7 +437,7 @@ struct AVFilterLink {
* Current timestamp of the link, as defined by the most recent
* frame(s), in AV_TIME_BASE units.
*/
- int64_t current_pts;
+ int64_t current_pts_us;
/**
* Index in the age array.