/external/webrtc/webrtc/system_wrappers/source/ |
rtp_to_ntp_unittest.cc | 39 uint32_t ntp_frac = 0; local 43 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp)); 44 ntp_frac += kOneMsInNtpFrac; 46 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp)); 47 ntp_frac += kOneMsInNtpFrac; 58 uint32_t ntp_frac = 0; local 62 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp)); 63 ntp_frac += kOneMsInNtpFrac; 65 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp)); 78 uint32_t ntp_frac = 0 local 98 uint32_t ntp_frac = 0; local 115 uint32_t ntp_frac = 0; local 135 uint32_t ntp_frac = 0; local [all...] |
rtp_to_ntp.cc | 20 : ntp_secs(0), ntp_frac(0), rtp_timestamp(0) {} 22 RtcpMeasurement::RtcpMeasurement(uint32_t ntp_secs, uint32_t ntp_frac, 24 : ntp_secs(ntp_secs), ntp_frac(ntp_frac), rtp_timestamp(timestamp) {} 58 uint32_t ntp_frac, 63 if (ntp_secs == 0 && ntp_frac == 0) { 69 measurement.ntp_frac = ntp_frac; 75 measurement.ntp_frac == (*it).ntp_frac) { [all...] |
clock.cc | 30 int64_t Clock::NtpToMs(uint32_t ntp_secs, uint32_t ntp_frac) { 31 const double ntp_frac_ms = static_cast<double>(ntp_frac) / kNtpFracPerMs;
|
/external/webrtc/webrtc/system_wrappers/include/ |
rtp_to_ntp.h | 22 RtcpMeasurement(uint32_t ntp_secs, uint32_t ntp_frac, uint32_t timestamp); 24 uint32_t ntp_frac; member in struct:webrtc::RtcpMeasurement 34 uint32_t ntp_frac,
|
/external/webrtc/webrtc/modules/rtp_rtcp/include/ |
remote_ntp_time_estimator.h | 33 // NTP fraction |ntp_frac| and RTP timestamp |rtcp_timestamp|. 34 bool UpdateRtcpTimestamp(int64_t rtt, uint32_t ntp_secs, uint32_t ntp_frac,
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
remote_ntp_time_estimator.cc | 33 uint32_t ntp_frac, 37 ntp_secs, ntp_frac, rtcp_timestamp, &rtcp_list_, &new_rtcp_sr)) { 47 int64_t sender_send_time_ms = Clock::NtpToMs(ntp_secs, ntp_frac);
|
remote_ntp_time_estimator_unittest.cc | 57 void UpdateRtcpTimestamp(int64_t rtt, uint32_t ntp_secs, uint32_t ntp_frac, 60 estimator_.UpdateRtcpTimestamp(rtt, ntp_secs, ntp_frac,
|
rtcp_receiver_help.h | 85 uint32_t ntp_frac; member in class:webrtc::RTCPHelp::RTCPPacketInformation
|
rtcp_sender_unittest.cc | 289 uint32_t ntp_frac; local 290 clock_.CurrentNtp(ntp_secs, ntp_frac); 295 EXPECT_EQ(ntp_frac, parser()->sender_report()->NtpFrac()); 612 uint32_t ntp_frac; local 613 clock_.CurrentNtp(ntp_secs, ntp_frac); 620 EXPECT_EQ(ntp_frac, parser()->rrtr()->NtpFrac()); 647 uint32_t ntp_frac; local 648 clock_.CurrentNtp(ntp_sec, ntp_frac); 649 uint32_t initial_mid_ntp = RTCPUtility::MidNtp(ntp_sec, ntp_frac); 659 clock_.CurrentNtp(ntp_sec, ntp_frac); [all...] |
rtcp_receiver_help.cc | 36 ntp_frac(0),
|
rtcp_sender.cc | 116 uint32_t ntp_frac, 124 ntp_frac_(ntp_frac), 813 uint32_t ntp_frac; local 814 clock_->CurrentNtp(ntp_sec, ntp_frac); 816 ntp_sec, ntp_frac, &container); 936 uint32_t ntp_frac; local 937 clock_->CurrentNtp(ntp_secs, ntp_frac); 945 now += (ntp_frac & 0xffff0000) >> 16; [all...] |
rtcp_utility.h | 49 uint32_t MidNtp(uint32_t ntp_sec, uint32_t ntp_frac);
|
rtp_rtcp_impl.cc | 933 uint32_t ntp_frac = 0; local 936 &ntp_frac, 943 ((ntp_secs & 0x0000ffff) << 16) + ((ntp_frac & 0xffff0000) >> 16);
|
rtcp_receiver.cc | 250 uint32_t ntp_frac = 0; local 251 _clock->CurrentNtp(ntp_sec, ntp_frac); 252 uint32_t now = RTCPUtility::MidNtp(ntp_sec, ntp_frac); 433 rtcpPacketInformation.ntp_frac = rtcpPacket.SR.NTPLeastSignificant; [all...] |
rtcp_receiver_unittest.cc | 127 rtcp_packet_info_.ntp_frac = rtcpPacketInformation.ntp_frac; [all...] |
rtcp_utility.cc | 42 uint32_t MidNtp(uint32_t ntp_sec, uint32_t ntp_frac) { 43 return (ntp_sec << 16) + (ntp_frac >> 16); [all...] |
/external/webrtc/webrtc/video/ |
vie_sync_module.cc | 32 uint32_t ntp_frac = 0; local 35 &ntp_frac, 44 ntp_secs, ntp_frac, rtp_timestamp, &stream->rtcp, &new_rtcp_sr)) {
|
vie_receiver.cc | 434 uint32_t ntp_frac = 0; local 436 if (0 != rtp_rtcp_->RemoteNTP(&ntp_secs, &ntp_frac, NULL, NULL, 441 ntp_estimator_->UpdateRtcpTimestamp(rtt, ntp_secs, ntp_frac, rtp_timestamp);
|
stream_synchronization_unittest.cc | 39 NowNtp(&rtcp.ntp_secs, &rtcp.ntp_frac); 44 void NowNtp(uint32_t* ntp_secs, uint32_t* ntp_frac) const { 47 *ntp_frac = static_cast<uint32_t>(
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
remote_bitrate_estimator_unittest_helper.h | 59 uint32_t ntp_frac; member in struct:webrtc::testing::RtpStream::RtcpPacket
|
remote_bitrate_estimator_unittest_helper.cc | 91 rtcp->ntp_frac = static_cast<int64_t>((send_time_us % 1000000) *
|
/external/webrtc/webrtc/call/ |
call_perf_tests.cc | 104 ntp_rtp_pair.ntp_frac == it->ntp_frac) {
|
/system/bt/stack/avdt/ |
avdt_api.c | [all...] |
/system/bt/stack/include/ |
avdt_api.h | 208 UINT32 ntp_frac; /* NTP time: the fractional part */ member in struct:__anon74051 [all...] |
/external/webrtc/webrtc/voice_engine/ |
channel.cc | 1821 uint32_t ntp_frac = 0; local [all...] |