Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/pacing/
Dpaced_sender_unittest.cc685 int time_until_process = send_bucket_->TimeUntilNextProcess(); in TEST_F() local
686 if (time_until_process <= 0) { in TEST_F()
689 clock_.AdvanceTimeMilliseconds(time_until_process); in TEST_F()
745 int time_until_process = send_bucket_->TimeUntilNextProcess(); in TEST_F() local
746 if (time_until_process <= 0) { in TEST_F()
749 clock_.AdvanceTimeMilliseconds(time_until_process); in TEST_F()
774 int time_until_process = send_bucket_->TimeUntilNextProcess(); in TEST_F() local
775 if (time_until_process <= 0) { in TEST_F()
778 clock_.AdvanceTimeMilliseconds(time_until_process); in TEST_F()
783 int time_until_process = send_bucket_->TimeUntilNextProcess(); in TEST_F() local
[all …]
/external/webrtc/webrtc/modules/video_coding/
Dvideo_coding_impl.cc32 const int64_t time_until_process = _periodMs - time_since_process; in TimeUntilProcess() local
33 return std::max<int64_t>(time_until_process, 0); in TimeUntilProcess()