Home
last modified time | relevance | path

Searched refs:last_process_time_ (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/modules/pacing/
Dpacing_controller.cc127 last_process_time_(clock->CurrentTime()), in PacingController()
128 last_send_time_(last_process_time_), in PacingController()
129 packet_queue_(last_process_time_, field_trials_), in PacingController()
309 if (last_process_time_.IsMinusInfinity()) { in UpdateTimeAndGetElapsed()
312 RTC_DCHECK_GE(now, last_process_time_); in UpdateTimeAndGetElapsed()
313 TimeDelta elapsed_time = now - last_process_time_; in UpdateTimeAndGetElapsed()
314 last_process_time_ = now; in UpdateTimeAndGetElapsed()
355 return last_process_time_ + min_packet_limit_; in NextSendTime()
379 last_process_time_ + media_debt_ / media_rate_); in NextSendTime()
389 last_process_time_ + drain_time); in NextSendTime()
[all …]
Dpacing_controller.h222 Timestamp last_process_time_; variable
/external/webrtc/video/
Dcall_stats.cc95 last_process_time_(clock_->TimeInMilliseconds()), in CallStats()
117 return last_process_time_ + kUpdateIntervalMs - clock_->TimeInMilliseconds(); in TimeUntilNextProcess()
123 last_process_time_ = now; in Process()
194 last_process_time_ -= kUpdateIntervalMs; in OnRttUpdate()
Dcall_stats.h82 int64_t last_process_time_ RTC_GUARDED_BY(process_thread_checker_);
/external/webrtc/modules/remote_bitrate_estimator/
Dremote_bitrate_estimator_single_stream.cc69 last_process_time_(-1), in RemoteBitrateEstimatorSingleStream()
164 last_process_time_ = clock_->TimeInMilliseconds(); in Process()
168 if (last_process_time_ < 0) { in TimeUntilNextProcess()
173 return last_process_time_ + process_interval_ms_ - in TimeUntilNextProcess()
Dremote_bitrate_estimator_single_stream.h74 int64_t last_process_time_; variable
/external/webrtc/test/network/
Dcross_traffic.cc37 if (last_process_time_.IsMinusInfinity()) { in Process()
38 last_process_time_ = at_time; in Process()
40 TimeDelta delta = at_time - last_process_time_; in Process()
41 last_process_time_ = at_time; in Process()
Dcross_traffic.h55 Timestamp last_process_time_ RTC_GUARDED_BY(sequence_checker_) =