Searched defs:ntp_fraction (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/media/cast/net/rtp_sender/
H A Drtp_sender.cc126 uint32 ntp_fraction = 0; local
127 ConvertTimeTicksToNtp(now, &ntp_seconds, &ntp_fraction);
129 sender_info->ntp_fraction = ntp_fraction;
/external/chromium_org/media/cast/rtcp/
H A Drtcp_defines.h70 uint32 ntp_fraction; member in struct:media::cast::RtcpSenderInfo
114 uint32 ntp_fraction; member in struct:media::cast::RtcpReceiverReferenceTimeReport
135 lhs.ntp_fraction == rhs.ntp_fraction &&
145 lhs.ntp_fraction == rhs.ntp_fraction;
H A Drtcp.cc70 remote_sender_info.ntp_fraction);
74 remote_sender_info.ntp_fraction);
81 remote_time_report.ntp_fraction);
294 ConvertTimeTicksToNtp(now, &rrtr.ntp_seconds, &rrtr.ntp_fraction);
295 SaveLastSentNtpTime(now, rrtr.ntp_seconds, rrtr.ntp_fraction);
320 SaveLastSentNtpTime(now, sender_info.ntp_seconds, sender_info.ntp_fraction);
343 void Rtcp::OnReceivedNtp(uint32 ntp_seconds, uint32 ntp_fraction) { argument
344 last_report_received_ = (ntp_seconds << 16) + (ntp_fraction >> 16);
352 uint32 ntp_fraction) {
355 last_received_ntp_fraction_ = ntp_fraction;
350 OnReceivedLipSyncInfo(uint32 rtp_timestamp, uint32 ntp_seconds, uint32 ntp_fraction) argument
[all...]

Completed in 126 milliseconds