Remove extra delay field trial.

Bug: webrtc:10817
Change-Id: I704a8ea0dc774f242f8d5d88b140f850cf23d518
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/164539
Commit-Queue: Jakob Ivarsson <jakobi@webrtc.org>
Reviewed-by: Ivo Creusen <ivoc@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#30182}
This commit is contained in:
Jakob Ivarsson
2020-01-08 14:29:04 +01:00
committed by Commit Bot
parent a406ee1ca2
commit 2ee15eb4fa
3 changed files with 2 additions and 50 deletions

View File

@ -131,8 +131,7 @@ class DelayManager {
void UpdateEffectiveMinimumDelay();
// Makes sure that |target_level_| is not too large, taking
// |max_packets_in_buffer_| and |extra_delay_ms_| into account. This method is
// called by Update().
// |max_packets_in_buffer_| into account. This method is called by Update().
void LimitTargetLevel();
// Makes sure that |delay_ms| is less than maximum delay, if any maximum
@ -175,8 +174,6 @@ class DelayManager {
};
std::deque<PacketDelay> delay_history_;
const absl::optional<int> extra_delay_ms_;
RTC_DISALLOW_COPY_AND_ASSIGN(DelayManager);
};