Add field trial config to disable pacer emergency stops.

Bug: none
Change-Id: Ie92c4ef82e5ce3e222ec85df21acfb233b16b85d
Reviewed-on: https://webrtc-review.googlesource.com/c/111883
Reviewed-by: Sebastian Jansson <srte@webrtc.org>
Commit-Queue: Christoffer Rodbro <crodbro@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25767}
This commit is contained in:
Christoffer Rodbro
2018-11-23 11:19:32 +01:00
committed by Commit Bot
parent 6d254bcd5e
commit b357e54dd5
2 changed files with 15 additions and 8 deletions

View File

@ -59,7 +59,8 @@ class CongestionControlHandler {
int64_t last_reported_target_bitrate_bps_ = 0;
uint8_t last_reported_fraction_loss_ = 0;
int64_t last_reported_rtt_ms_ = 0;
const bool pacer_pushback_experiment_ = false;
const bool pacer_pushback_experiment_;
const bool disable_pacer_emergency_stop_;
uint32_t min_pushback_target_bitrate_bps_;
int64_t pacer_expected_queue_ms_ = 0;
double encoding_rate_ratio_ = 1.0;