Home
last modified time | relevance | path

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

/external/webrtc/modules/pacing/
Dtask_queue_paced_sender.cc47 next_process_time_(Timestamp::MinusInfinity()), in TaskQueuePacedSender()
209 const bool is_scheduled_call = next_process_time_ == scheduled_process_time; in MaybeProcessPackets()
212 next_process_time_ = Timestamp::MinusInfinity(); in MaybeProcessPackets()
215 (now >= next_process_time && (next_process_time_.IsInfinite() || in MaybeProcessPackets()
216 next_process_time < next_process_time_))) { in MaybeProcessPackets()
227 if (next_process_time_.IsMinusInfinity() || in MaybeProcessPackets()
229 next_process_time_ - PacingController::kMinSleepTime) { in MaybeProcessPackets()
230 next_process_time_ = next_process_time; in MaybeProcessPackets()
Dtask_queue_paced_sender.h141 Timestamp next_process_time_ RTC_GUARDED_BY(task_queue_);
/external/webrtc/modules/rtp_rtcp/source/
Drtp_rtcp_impl.cc65 next_process_time_(clock_->TimeInMilliseconds() + in ModuleRtpRtcpImpl()
93 next_process_time_ - clock_->TimeInMilliseconds()); in TimeUntilNextProcess()
101 next_process_time_ = now + kRtpRtcpMaxIdleTimeProcessMs; in Process()
110 next_process_time_ = in Process()
111 std::min(next_process_time_, now + kRtpRtcpBitrateProcessTimeMs); in Process()
182 next_process_time_ = std::min( in Process()
183 next_process_time_, last_rtt_process_time_ + kRtpRtcpRttProcessTimeMs); in Process()
Drtp_rtcp_impl2.cc61 next_process_time_(clock_->TimeInMilliseconds() + in ModuleRtpRtcpImpl2()
111 next_process_time_ - clock_->TimeInMilliseconds()); in TimeUntilNextProcess()
122 next_process_time_ = now.ms() + kRtpRtcpMaxIdleTimeProcessMs; in Process()
Drtp_rtcp_impl2.h310 int64_t next_process_time_; variable
Drtp_rtcp_impl.h343 int64_t next_process_time_; variable