PacingController: remove unused kDefaultPaceMultiplier

Bug: None
Change-Id: Ida1fa3b8cde7a9c3694095c1d56aca5832498850
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/278040
Reviewed-by: Erik Språng <sprang@webrtc.org>
Commit-Queue: Rasmus Brandt <brandtr@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#38299}
This commit is contained in:
Rasmus Brandt
2022-10-04 21:48:26 +02:00
committed by WebRTC LUCI CQ
parent d0b3e4beb4
commit ad68affb90
2 changed files with 0 additions and 7 deletions

View File

@ -47,7 +47,6 @@ bool IsEnabled(const FieldTrialsView& field_trials, absl::string_view key) {
const TimeDelta PacingController::kMaxExpectedQueueLength =
TimeDelta::Millis(2000);
const float PacingController::kDefaultPaceMultiplier = 2.5f;
const TimeDelta PacingController::kPausedProcessInterval =
kCongestedPacketInterval;
const TimeDelta PacingController::kMinSleepTime = TimeDelta::Millis(1);

View File

@ -68,12 +68,6 @@ class PacingController {
// encoding them). Bitrate sent may temporarily exceed target set by
// UpdateBitrate() so that this limit will be upheld.
static const TimeDelta kMaxExpectedQueueLength;
// Pacing-rate relative to our target send rate.
// Multiplicative factor that is applied to the target bitrate to calculate
// the number of bytes that can be transmitted per interval.
// Increasing this factor will result in lower delays in cases of bitrate
// overshoots from the encoder.
static const float kDefaultPaceMultiplier;
// If no media or paused, wake up at least every `kPausedProcessIntervalMs` in
// order to send a keep-alive packet so we don't get stuck in a bad state due
// to lack of feedback.