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}
This commit is contained in:
isheriff 2016-09-29 02:02:11 -07:00 committed by Commit bot
parent 0fd22ef0ae
commit 90ce01dbbe

View File

@ -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<int64_t>(next_process_time_ - clock_->TimeInMilliseconds(),