Home
last modified time | relevance | path

Searched refs:last_process_time_ms_ (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/remote_bitrate_estimator/
Dremote_estimator_proxy.cc42 last_process_time_ms_(-1), in RemoteEstimatorProxy()
141 } else if (last_process_time_ms_ != -1) { in TimeUntilNextProcess()
143 if (now - last_process_time_ms_ < send_interval_ms_) in TimeUntilNextProcess()
144 return last_process_time_ms_ + send_interval_ms_ - now; in TimeUntilNextProcess()
154 last_process_time_ms_ = clock_->TimeInMilliseconds(); in Process()
Dremote_estimator_proxy.h93 int64_t last_process_time_ms_; variable
/external/webrtc/video/
Dstats_counter.cc181 last_process_time_ms_(-1), in StatsCounter()
219 return last_process_time_ms_ != -1; in HasSample()
224 if (last_process_time_ms_ == -1) in TimeToProcess()
225 last_process_time_ms_ = now; in TimeToProcess()
227 int64_t diff_ms = now - last_process_time_ms_; in TimeToProcess()
233 last_process_time_ms_ += num_intervals * process_intervals_ms_; in TimeToProcess()
Dstats_counter.h136 int64_t last_process_time_ms_; variable