Lines Matching defs:timestamp
35 #include "libavutil/timestamp.h"
49 static int64_t wrap_timestamp(const AVStream *st, int64_t timestamp)
53 sti->pts_wrap_reference != AV_NOPTS_VALUE && timestamp != AV_NOPTS_VALUE) {
55 timestamp < sti->pts_wrap_reference)
56 return timestamp + (1ULL << st->pts_wrap_bits);
58 timestamp >= sti->pts_wrap_reference)
59 return timestamp - (1ULL << st->pts_wrap_bits);
61 return timestamp;
64 int64_t ff_wrap_timestamp(const AVStream *st, int64_t timestamp)
66 return wrap_timestamp(st, timestamp);
1057 /* DTS = decompression timestamp */
1058 /* PTS = presentation timestamp */