mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 14:50:39 +01:00

This is a no-op change because rtc::Optional is an alias to absl::optional This CL generated by running script with parameters 'audio call video': #!/bin/bash find $@ -type f \( -name \*.h -o -name \*.cc \) \ -exec sed -i 's|rtc::Optional|absl::optional|g' {} \+ \ -exec sed -i 's|rtc::nullopt|absl::nullopt|g' {} \+ \ -exec sed -i 's|#include "api/optional.h"|#include "absl/types/optional.h"|' {} \+ find $@ -type f -name BUILD.gn \ -exec sed -r -i 's|"(../)*api:optional"|"//third_party/abseil-cpp/absl/types:optional"|' {} \+; git cl format Bug: webrtc:9078 Change-Id: I02c5db956846a88a268a300ba086703a02d62e36 Reviewed-on: https://webrtc-review.googlesource.com/83722 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23628}
107 lines
3.7 KiB
C++
107 lines
3.7 KiB
C++
/*
|
|
* Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "call/rtp_bitrate_configurator.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
namespace webrtc {
|
|
RtpBitrateConfigurator::RtpBitrateConfigurator(
|
|
const BitrateConstraints& bitrate_config)
|
|
: bitrate_config_(bitrate_config), base_bitrate_config_(bitrate_config) {
|
|
RTC_DCHECK_GE(bitrate_config.min_bitrate_bps, 0);
|
|
RTC_DCHECK_GE(bitrate_config.start_bitrate_bps,
|
|
bitrate_config.min_bitrate_bps);
|
|
if (bitrate_config.max_bitrate_bps != -1) {
|
|
RTC_DCHECK_GE(bitrate_config.max_bitrate_bps,
|
|
bitrate_config.start_bitrate_bps);
|
|
}
|
|
}
|
|
|
|
RtpBitrateConfigurator::~RtpBitrateConfigurator() = default;
|
|
|
|
BitrateConstraints RtpBitrateConfigurator::GetConfig() const {
|
|
return bitrate_config_;
|
|
}
|
|
|
|
absl::optional<BitrateConstraints>
|
|
RtpBitrateConfigurator::UpdateWithSdpParameters(
|
|
const BitrateConstraints& bitrate_config) {
|
|
RTC_DCHECK_GE(bitrate_config.min_bitrate_bps, 0);
|
|
RTC_DCHECK_NE(bitrate_config.start_bitrate_bps, 0);
|
|
if (bitrate_config.max_bitrate_bps != -1) {
|
|
RTC_DCHECK_GT(bitrate_config.max_bitrate_bps, 0);
|
|
}
|
|
|
|
absl::optional<int> new_start;
|
|
// Only update the "start" bitrate if it's set, and different from the old
|
|
// value. In practice, this value comes from the x-google-start-bitrate codec
|
|
// parameter in SDP, and setting the same remote description twice shouldn't
|
|
// restart bandwidth estimation.
|
|
if (bitrate_config.start_bitrate_bps != -1 &&
|
|
bitrate_config.start_bitrate_bps !=
|
|
base_bitrate_config_.start_bitrate_bps) {
|
|
new_start.emplace(bitrate_config.start_bitrate_bps);
|
|
}
|
|
base_bitrate_config_ = bitrate_config;
|
|
return UpdateConstraints(new_start);
|
|
}
|
|
|
|
absl::optional<BitrateConstraints>
|
|
RtpBitrateConfigurator::UpdateWithClientPreferences(
|
|
const BitrateSettings& bitrate_mask) {
|
|
bitrate_config_mask_ = bitrate_mask;
|
|
return UpdateConstraints(bitrate_mask.start_bitrate_bps);
|
|
}
|
|
|
|
absl::optional<BitrateConstraints> RtpBitrateConfigurator::UpdateConstraints(
|
|
const absl::optional<int>& new_start) {
|
|
BitrateConstraints updated;
|
|
updated.min_bitrate_bps =
|
|
std::max(bitrate_config_mask_.min_bitrate_bps.value_or(0),
|
|
base_bitrate_config_.min_bitrate_bps);
|
|
|
|
updated.max_bitrate_bps =
|
|
MinPositive(bitrate_config_mask_.max_bitrate_bps.value_or(-1),
|
|
base_bitrate_config_.max_bitrate_bps);
|
|
|
|
// If the combined min ends up greater than the combined max, the max takes
|
|
// priority.
|
|
if (updated.max_bitrate_bps != -1 &&
|
|
updated.min_bitrate_bps > updated.max_bitrate_bps) {
|
|
updated.min_bitrate_bps = updated.max_bitrate_bps;
|
|
}
|
|
|
|
// If there is nothing to update (min/max unchanged, no new bandwidth
|
|
// estimation start value), return early.
|
|
if (updated.min_bitrate_bps == bitrate_config_.min_bitrate_bps &&
|
|
updated.max_bitrate_bps == bitrate_config_.max_bitrate_bps &&
|
|
!new_start) {
|
|
return absl::nullopt;
|
|
}
|
|
|
|
if (new_start) {
|
|
// Clamp start by min and max.
|
|
updated.start_bitrate_bps = MinPositive(
|
|
std::max(*new_start, updated.min_bitrate_bps), updated.max_bitrate_bps);
|
|
} else {
|
|
updated.start_bitrate_bps = -1;
|
|
}
|
|
BitrateConstraints config_to_return = updated;
|
|
if (!new_start) {
|
|
updated.start_bitrate_bps = bitrate_config_.start_bitrate_bps;
|
|
}
|
|
bitrate_config_ = updated;
|
|
return config_to_return;
|
|
}
|
|
|
|
} // namespace webrtc
|