Home
last modified time | relevance | path

Searched refs:ntp_ts (Results 1 - 3 of 3) sorted by relevance

/third_party/ffmpeg/libavformat/
H A Dutils.c265 uint64_t ntp_ts, frac_part, sec; in ff_get_formatted_ntp_time() local
279 ntp_ts = sec << 32; in ff_get_formatted_ntp_time()
280 ntp_ts |= frac_part; in ff_get_formatted_ntp_time()
282 return ntp_ts; in ff_get_formatted_ntp_time()
285 uint64_t ff_parse_ntp_time(uint64_t ntp_ts) in ff_parse_ntp_time() argument
287 uint64_t sec = ntp_ts >> 32; in ff_parse_ntp_time()
288 uint64_t frac_part = ntp_ts & 0xFFFFFFFFULL; in ff_parse_ntp_time()
H A Dinternal.h483 * @param ntp_ts NTP time stamp formatted as per the RFC-5905.
486 uint64_t ff_parse_ntp_time(uint64_t ntp_ts);
H A Dmovenc.c5572 int64_t pos = avio_tell(pb), pts_us, ntp_ts; local
5595 ntp_ts = ff_get_formatted_ntp_time((first_track->cluster[0].prft.wallclock / 1000) * 1000 +
5599 ntp_ts = ff_get_formatted_ntp_time(ff_ntp_time());
5603 ntp_ts = ff_get_formatted_ntp_time(pts_us + NTP_OFFSET_US);
5615 avio_wb64(pb, ntp_ts); // NTP time stamp

Completed in 14 milliseconds