Home
last modified time | relevance | path

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

/aosp_15_r20/external/webrtc/video/
H A 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()
H A Dstats_counter.h134 int64_t last_process_time_ms_; variable