2020-12-23 07:48:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2020 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.
|
|
|
|
*/
|
|
|
|
|
2021-06-25 00:43:10 +00:00
|
|
|
#include "video/adaptation/bitrate_constraint.h"
|
|
|
|
|
2020-12-23 07:48:30 +00:00
|
|
|
#include <utility>
|
2021-06-25 00:43:10 +00:00
|
|
|
#include <vector>
|
2020-12-23 07:48:30 +00:00
|
|
|
|
2021-06-25 00:43:10 +00:00
|
|
|
#include "api/sequence_checker.h"
|
2020-12-23 07:48:30 +00:00
|
|
|
#include "call/adaptation/video_stream_adapter.h"
|
2021-06-25 00:43:10 +00:00
|
|
|
#include "video/adaptation/video_stream_encoder_resource_manager.h"
|
2020-12-23 07:48:30 +00:00
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
BitrateConstraint::BitrateConstraint()
|
|
|
|
: encoder_settings_(absl::nullopt),
|
|
|
|
encoder_target_bitrate_bps_(absl::nullopt) {
|
|
|
|
sequence_checker_.Detach();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitrateConstraint::OnEncoderSettingsUpdated(
|
|
|
|
absl::optional<EncoderSettings> encoder_settings) {
|
|
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
|
|
encoder_settings_ = std::move(encoder_settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitrateConstraint::OnEncoderTargetBitrateUpdated(
|
|
|
|
absl::optional<uint32_t> encoder_target_bitrate_bps) {
|
|
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
|
|
encoder_target_bitrate_bps_ = std::move(encoder_target_bitrate_bps);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BitrateConstraint::IsAdaptationUpAllowed(
|
|
|
|
const VideoStreamInputState& input_state,
|
|
|
|
const VideoSourceRestrictions& restrictions_before,
|
|
|
|
const VideoSourceRestrictions& restrictions_after) const {
|
|
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
|
|
// Make sure bitrate limits are not violated.
|
|
|
|
if (DidIncreaseResolution(restrictions_before, restrictions_after)) {
|
2021-06-25 00:43:10 +00:00
|
|
|
if (!encoder_settings_.has_value()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-12-23 07:48:30 +00:00
|
|
|
uint32_t bitrate_bps = encoder_target_bitrate_bps_.value_or(0);
|
2021-06-25 00:43:10 +00:00
|
|
|
if (bitrate_bps == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (VideoStreamEncoderResourceManager::IsSimulcast(
|
|
|
|
encoder_settings_->encoder_config())) {
|
|
|
|
// Resolution bitrate limits usage is restricted to singlecast.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
absl::optional<int> current_frame_size_px =
|
|
|
|
input_state.single_active_stream_pixels();
|
|
|
|
if (!current_frame_size_px.has_value()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-12-23 07:48:30 +00:00
|
|
|
absl::optional<VideoEncoder::ResolutionBitrateLimits> bitrate_limits =
|
2021-06-25 00:43:10 +00:00
|
|
|
encoder_settings_->encoder_info().GetEncoderBitrateLimitsForResolution(
|
|
|
|
// Need some sort of expected resulting pixels to be used
|
|
|
|
// instead of unrestricted.
|
|
|
|
GetHigherResolutionThan(*current_frame_size_px));
|
|
|
|
|
|
|
|
if (bitrate_limits.has_value()) {
|
|
|
|
RTC_DCHECK_GE(bitrate_limits->frame_size_pixels, *current_frame_size_px);
|
2020-12-23 07:48:30 +00:00
|
|
|
return bitrate_bps >=
|
|
|
|
static_cast<uint32_t>(bitrate_limits->min_start_bitrate_bps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace webrtc
|