From 90ce01dbbea9a0dcdb4e9e77365c15a2289f28d7 Mon Sep 17 00:00:00 2001 From: isheriff Date: Thu, 29 Sep 2016 02:02:11 -0700 Subject: [PATCH] The current default schedule delay of 30 ms prohibits scaling to high bitrates when probing. BUG=webrtc:6332 Review-Url: https://codereview.webrtc.org/2372013002 Cr-Commit-Position: refs/heads/master@{#14427} --- webrtc/test/fake_network_pipe.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/test/fake_network_pipe.cc b/webrtc/test/fake_network_pipe.cc index 19f1b5451c..5a8d4fb380 100644 --- a/webrtc/test/fake_network_pipe.cc +++ b/webrtc/test/fake_network_pipe.cc @@ -194,7 +194,7 @@ void FakeNetworkPipe::Process() { int64_t FakeNetworkPipe::TimeUntilNextProcess() const { rtc::CritScope crit(&lock_); - const int64_t kDefaultProcessIntervalMs = 30; + const int64_t kDefaultProcessIntervalMs = 5; if (capacity_link_.empty() || delay_link_.empty()) return kDefaultProcessIntervalMs; return std::max(next_process_time_ - clock_->TimeInMilliseconds(),