Home
last modified time | relevance | path

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

/external/chromium_org/third_party/webrtc/video_engine/
Doveruse_frame_detector.cc30 const int64_t kProcessIntervalMs = 5000; variable
291 float exp = static_cast<float>(diff_last_process_ms) / kProcessIntervalMs; in Process()
348 float exp = static_cast<float>(diff_last_sample_ms) / kProcessIntervalMs; in CalculateDelayChange()
503 int64_t diff_ms = now - next_process_time_ + kProcessIntervalMs; in Process()
504 next_process_time_ = now + kProcessIntervalMs; in Process()
Doveruse_frame_detector_unittest.cc24 const int kProcessIntervalMs = 5000; variable
224 clock_->AdvanceTimeMilliseconds(kProcessIntervalMs); in TEST_F()
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/include/
Dremote_bitrate_estimator.h92 static const int kProcessIntervalMs = 1000;
/external/chromium_org/components/copresence/mediums/audio/
Daudio_recorder.cc25 const float kProcessIntervalMs = 500.0f; // milliseconds. variable
116 total_buffer_frames_ = kProcessIntervalMs * dest_params.sample_rate() / 1000; in InitializeOnAudioThread()
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
Dbwe_test_framework.cc629 const int kProcessIntervalMs = 10; in RunFor() local
631 current_time += kProcessIntervalMs) { in RunFor()
633 1000 * (clock_.TimeInMilliseconds() + kProcessIntervalMs); in RunFor()
650 clock_.AdvanceTimeMilliseconds(kProcessIntervalMs); in RunFor()
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
Dremote_bitrate_estimator_single_stream.cc161 return last_process_time_ + kProcessIntervalMs - clock_->TimeInMilliseconds(); in TimeUntilNextProcess()