Home
last modified time | relevance | path

Searched refs:next_send_time (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/modules/audio_coding/neteq/
Dneteq_stereo_unittest.cc112 int next_send_time = rtp_generator_mono_.GetRtpHeader( in GetNewPackets() local
123 return next_send_time; in GetNewPackets()
154 int next_send_time; in RunTest() local
157 next_send_time = GetNewPackets(); in RunTest()
158 ASSERT_NE(-1, next_send_time); in RunTest()
159 next_arrival_time = GetArrivalTime(next_send_time); in RunTest()
177 next_send_time = GetNewPackets(); in RunTest()
178 ASSERT_NE(-1, next_send_time); in RunTest()
179 next_arrival_time = GetArrivalTime(next_send_time); in RunTest()
Dneteq_network_stats_unittest.cc232 uint32_t next_send_time; in RunTest() local
235 time_now = next_send_time = last_lost_time_ = rtp_generator_->GetRtpHeader( in RunTest()
239 while (time_now + kFrameSizeMs >= next_send_time) { in RunTest()
240 next_send_time = rtp_generator_->GetRtpHeader( in RunTest()
242 if (!Lost(next_send_time)) { in RunTest()
/external/openscreen/cast/streaming/
Dsender_packet_router.cc132 const auto next_send_time = in ScheduleNextBurst() local
134 if (next_send_time >= next_burst_time) { in ScheduleNextBurst()
137 if (next_send_time <= earliest_allowed_burst_time) { in ScheduleNextBurst()
142 next_burst_time = next_send_time; in ScheduleNextBurst()
/external/webrtc/modules/pacing/
Dpaced_sender.cc171 Timestamp next_send_time = pacing_controller_.NextSendTime(); in TimeUntilNextProcess() local
173 std::max(TimeDelta::Zero(), next_send_time - clock_->CurrentTime()); in TimeUntilNextProcess()
Dpacing_controller.cc592 Timestamp next_send_time = NextSendTime(); in ProcessPackets() local
593 if (next_send_time.IsMinusInfinity()) { in ProcessPackets()
596 target_send_time = std::min(now, next_send_time); in ProcessPackets()
Dpacing_controller_unittest.cc289 Timestamp next_send_time = pacer_->NextSendTime(); in AdvanceTimeAndProcess() local
290 clock_.AdvanceTime(std::max(TimeDelta::Zero(), next_send_time - now)); in AdvanceTimeAndProcess()
354 Timestamp next_send_time = pacer->NextSendTime(); in ProcessNext() local
355 TimeDelta wait_time = std::max(TimeDelta::Zero(), next_send_time - now); in ProcessNext()
1802 Timestamp next_send_time = pacer_->NextSendTime(); in TEST_P() local
1804 const TimeDelta time_between_packets = next_send_time - clock_.CurrentTime(); in TEST_P()
1815 next_send_time = pacer_->NextSendTime(); in TEST_P()
1816 const TimeDelta time_left = next_send_time - clock_.CurrentTime(); in TEST_P()
1943 Timestamp next_send_time = pacer_->NextSendTime(); in TEST_P() local
1945 std::min(next_send_time, last_audio_time + kAudioPacketInterval) - in TEST_P()