HomeSort by relevance Sort by last modified time
    Searched refs:fps_counter_ (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/video_coding/
jitter_estimator.h 162 rtc::RollingAccumulator<uint64_t> fps_counter_; member in class:webrtc::VCMJitterEstimator
jitter_estimator.cc 46 fps_counter_(30), // TODO(sprang): Use an estimator with limit based on
109 fps_counter_.Reset();
298 fps_counter_.AddSample(now - _lastUpdateT);
432 if (fps_counter_.count() == 0)
435 double fps = 1000000.0 / fps_counter_.ComputeMean();

Completed in 60 milliseconds