mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-16 23:30:48 +01:00

by updating flag that T1 frame can be referenced when it is encoded rather than when it is sent for encoding. Otherwise when encoder drops T1 frame, configuration for following T2 frame would still try to reference that absent T1 frame leading to invalid references. Bug: None Change-Id: I6398275971596b0618bcf9c926f0282f74120976 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/202030 Reviewed-by: Philip Eliasson <philipel@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#33002}
288 lines
10 KiB
C++
288 lines
10 KiB
C++
/*
|
|
* Copyright (c) 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.
|
|
*/
|
|
#include "modules/video_coding/svc/scalability_structure_full_svc.h"
|
|
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "absl/strings/string_view.h"
|
|
#include "absl/types/optional.h"
|
|
#include "api/transport/rtp/dependency_descriptor.h"
|
|
#include "rtc_base/checks.h"
|
|
#include "rtc_base/logging.h"
|
|
|
|
namespace webrtc {
|
|
namespace {
|
|
enum : int { kKey, kDelta };
|
|
} // namespace
|
|
|
|
constexpr int ScalabilityStructureFullSvc::kMaxNumSpatialLayers;
|
|
constexpr int ScalabilityStructureFullSvc::kMaxNumTemporalLayers;
|
|
constexpr absl::string_view ScalabilityStructureFullSvc::kFramePatternNames[];
|
|
|
|
ScalabilityStructureFullSvc::ScalabilityStructureFullSvc(
|
|
int num_spatial_layers,
|
|
int num_temporal_layers)
|
|
: num_spatial_layers_(num_spatial_layers),
|
|
num_temporal_layers_(num_temporal_layers),
|
|
active_decode_targets_(
|
|
(uint32_t{1} << (num_spatial_layers * num_temporal_layers)) - 1) {
|
|
RTC_DCHECK_LE(num_spatial_layers, kMaxNumSpatialLayers);
|
|
RTC_DCHECK_LE(num_temporal_layers, kMaxNumTemporalLayers);
|
|
}
|
|
|
|
ScalabilityStructureFullSvc::~ScalabilityStructureFullSvc() = default;
|
|
|
|
ScalabilityStructureFullSvc::StreamLayersConfig
|
|
ScalabilityStructureFullSvc::StreamConfig() const {
|
|
StreamLayersConfig result;
|
|
result.num_spatial_layers = num_spatial_layers_;
|
|
result.num_temporal_layers = num_temporal_layers_;
|
|
result.scaling_factor_num[num_spatial_layers_ - 1] = 1;
|
|
result.scaling_factor_den[num_spatial_layers_ - 1] = 1;
|
|
for (int sid = num_spatial_layers_ - 1; sid > 0; --sid) {
|
|
result.scaling_factor_num[sid - 1] = 1;
|
|
result.scaling_factor_den[sid - 1] = 2 * result.scaling_factor_den[sid];
|
|
}
|
|
return result;
|
|
}
|
|
|
|
bool ScalabilityStructureFullSvc::TemporalLayerIsActive(int tid) const {
|
|
if (tid >= num_temporal_layers_) {
|
|
return false;
|
|
}
|
|
for (int sid = 0; sid < num_spatial_layers_; ++sid) {
|
|
if (DecodeTargetIsActive(sid, tid)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
DecodeTargetIndication ScalabilityStructureFullSvc::Dti(
|
|
int sid,
|
|
int tid,
|
|
const LayerFrameConfig& config) {
|
|
if (sid < config.SpatialId() || tid < config.TemporalId()) {
|
|
return DecodeTargetIndication::kNotPresent;
|
|
}
|
|
if (sid == config.SpatialId()) {
|
|
if (tid == 0) {
|
|
RTC_DCHECK_EQ(config.TemporalId(), 0);
|
|
return DecodeTargetIndication::kSwitch;
|
|
}
|
|
if (tid == config.TemporalId()) {
|
|
return DecodeTargetIndication::kDiscardable;
|
|
}
|
|
if (tid > config.TemporalId()) {
|
|
RTC_DCHECK_GT(tid, config.TemporalId());
|
|
return DecodeTargetIndication::kSwitch;
|
|
}
|
|
}
|
|
RTC_DCHECK_GT(sid, config.SpatialId());
|
|
RTC_DCHECK_GE(tid, config.TemporalId());
|
|
if (config.IsKeyframe() || config.Id() == kKey) {
|
|
return DecodeTargetIndication::kSwitch;
|
|
}
|
|
return DecodeTargetIndication::kRequired;
|
|
}
|
|
|
|
ScalabilityStructureFullSvc::FramePattern
|
|
ScalabilityStructureFullSvc::NextPattern() const {
|
|
switch (last_pattern_) {
|
|
case kNone:
|
|
case kDeltaT2B:
|
|
return kDeltaT0;
|
|
case kDeltaT2A:
|
|
if (TemporalLayerIsActive(1)) {
|
|
return kDeltaT1;
|
|
}
|
|
return kDeltaT0;
|
|
case kDeltaT1:
|
|
if (TemporalLayerIsActive(2)) {
|
|
return kDeltaT2B;
|
|
}
|
|
return kDeltaT0;
|
|
case kDeltaT0:
|
|
if (TemporalLayerIsActive(2)) {
|
|
return kDeltaT2A;
|
|
}
|
|
if (TemporalLayerIsActive(1)) {
|
|
return kDeltaT1;
|
|
}
|
|
return kDeltaT0;
|
|
}
|
|
}
|
|
|
|
std::vector<ScalableVideoController::LayerFrameConfig>
|
|
ScalabilityStructureFullSvc::NextFrameConfig(bool restart) {
|
|
std::vector<LayerFrameConfig> configs;
|
|
if (active_decode_targets_.none()) {
|
|
last_pattern_ = kNone;
|
|
return configs;
|
|
}
|
|
configs.reserve(num_spatial_layers_);
|
|
|
|
if (last_pattern_ == kNone || restart) {
|
|
can_reference_t0_frame_for_spatial_id_.reset();
|
|
last_pattern_ = kNone;
|
|
}
|
|
FramePattern current_pattern = NextPattern();
|
|
|
|
absl::optional<int> spatial_dependency_buffer_id;
|
|
switch (current_pattern) {
|
|
case kDeltaT0:
|
|
// Disallow temporal references cross T0 on higher temporal layers.
|
|
can_reference_t1_frame_for_spatial_id_.reset();
|
|
for (int sid = 0; sid < num_spatial_layers_; ++sid) {
|
|
if (!DecodeTargetIsActive(sid, /*tid=*/0)) {
|
|
// Next frame from the spatial layer `sid` shouldn't depend on
|
|
// potentially old previous frame from the spatial layer `sid`.
|
|
can_reference_t0_frame_for_spatial_id_.reset(sid);
|
|
continue;
|
|
}
|
|
configs.emplace_back();
|
|
ScalableVideoController::LayerFrameConfig& config = configs.back();
|
|
config.Id(last_pattern_ == kNone ? kKey : kDelta).S(sid).T(0);
|
|
|
|
if (spatial_dependency_buffer_id) {
|
|
config.Reference(*spatial_dependency_buffer_id);
|
|
} else if (last_pattern_ == kNone) {
|
|
config.Keyframe();
|
|
}
|
|
|
|
if (can_reference_t0_frame_for_spatial_id_[sid]) {
|
|
config.ReferenceAndUpdate(BufferIndex(sid, /*tid=*/0));
|
|
} else {
|
|
// TODO(bugs.webrtc.org/11999): Propagate chain restart on delta frame
|
|
// to ChainDiffCalculator
|
|
config.Update(BufferIndex(sid, /*tid=*/0));
|
|
}
|
|
|
|
can_reference_t0_frame_for_spatial_id_.set(sid);
|
|
spatial_dependency_buffer_id = BufferIndex(sid, /*tid=*/0);
|
|
}
|
|
break;
|
|
case kDeltaT1:
|
|
for (int sid = 0; sid < num_spatial_layers_; ++sid) {
|
|
if (!DecodeTargetIsActive(sid, /*tid=*/1) ||
|
|
!can_reference_t0_frame_for_spatial_id_[sid]) {
|
|
continue;
|
|
}
|
|
configs.emplace_back();
|
|
ScalableVideoController::LayerFrameConfig& config = configs.back();
|
|
config.Id(kDelta).S(sid).T(1);
|
|
// Temporal reference.
|
|
config.Reference(BufferIndex(sid, /*tid=*/0));
|
|
// Spatial reference unless this is the lowest active spatial layer.
|
|
if (spatial_dependency_buffer_id) {
|
|
config.Reference(*spatial_dependency_buffer_id);
|
|
}
|
|
// No frame reference top layer frame, so no need save it into a buffer.
|
|
if (num_temporal_layers_ > 2 || sid < num_spatial_layers_ - 1) {
|
|
config.Update(BufferIndex(sid, /*tid=*/1));
|
|
}
|
|
spatial_dependency_buffer_id = BufferIndex(sid, /*tid=*/1);
|
|
}
|
|
break;
|
|
case kDeltaT2A:
|
|
case kDeltaT2B:
|
|
for (int sid = 0; sid < num_spatial_layers_; ++sid) {
|
|
if (!DecodeTargetIsActive(sid, /*tid=*/2) ||
|
|
!can_reference_t0_frame_for_spatial_id_[sid]) {
|
|
continue;
|
|
}
|
|
configs.emplace_back();
|
|
ScalableVideoController::LayerFrameConfig& config = configs.back();
|
|
config.Id(kDelta).S(sid).T(2);
|
|
// Temporal reference.
|
|
if (current_pattern == kDeltaT2B &&
|
|
can_reference_t1_frame_for_spatial_id_[sid]) {
|
|
config.Reference(BufferIndex(sid, /*tid=*/1));
|
|
} else {
|
|
config.Reference(BufferIndex(sid, /*tid=*/0));
|
|
}
|
|
// Spatial reference unless this is the lowest active spatial layer.
|
|
if (spatial_dependency_buffer_id) {
|
|
config.Reference(*spatial_dependency_buffer_id);
|
|
}
|
|
// No frame reference top layer frame, so no need save it into a buffer.
|
|
if (sid < num_spatial_layers_ - 1) {
|
|
config.Update(BufferIndex(sid, /*tid=*/2));
|
|
}
|
|
spatial_dependency_buffer_id = BufferIndex(sid, /*tid=*/2);
|
|
}
|
|
break;
|
|
case kNone:
|
|
RTC_NOTREACHED();
|
|
break;
|
|
}
|
|
|
|
if (configs.empty() && !restart) {
|
|
RTC_LOG(LS_WARNING) << "Failed to generate configuration for L"
|
|
<< num_spatial_layers_ << "T" << num_temporal_layers_
|
|
<< " with active decode targets "
|
|
<< active_decode_targets_.to_string('-').substr(
|
|
active_decode_targets_.size() -
|
|
num_spatial_layers_ * num_temporal_layers_)
|
|
<< " and transition from "
|
|
<< kFramePatternNames[last_pattern_] << " to "
|
|
<< kFramePatternNames[current_pattern]
|
|
<< ". Resetting.";
|
|
return NextFrameConfig(/*restart=*/true);
|
|
}
|
|
|
|
last_pattern_ = current_pattern;
|
|
return configs;
|
|
}
|
|
|
|
GenericFrameInfo ScalabilityStructureFullSvc::OnEncodeDone(
|
|
const LayerFrameConfig& config) {
|
|
if (config.TemporalId() == 1) {
|
|
can_reference_t1_frame_for_spatial_id_.set(config.SpatialId());
|
|
}
|
|
|
|
GenericFrameInfo frame_info;
|
|
frame_info.spatial_id = config.SpatialId();
|
|
frame_info.temporal_id = config.TemporalId();
|
|
frame_info.encoder_buffers = config.Buffers();
|
|
frame_info.decode_target_indications.reserve(num_spatial_layers_ *
|
|
num_temporal_layers_);
|
|
for (int sid = 0; sid < num_spatial_layers_; ++sid) {
|
|
for (int tid = 0; tid < num_temporal_layers_; ++tid) {
|
|
frame_info.decode_target_indications.push_back(Dti(sid, tid, config));
|
|
}
|
|
}
|
|
if (config.TemporalId() == 0) {
|
|
frame_info.part_of_chain.resize(num_spatial_layers_);
|
|
for (int sid = 0; sid < num_spatial_layers_; ++sid) {
|
|
frame_info.part_of_chain[sid] = config.SpatialId() <= sid;
|
|
}
|
|
} else {
|
|
frame_info.part_of_chain.assign(num_spatial_layers_, false);
|
|
}
|
|
frame_info.active_decode_targets = active_decode_targets_;
|
|
return frame_info;
|
|
}
|
|
|
|
void ScalabilityStructureFullSvc::OnRatesUpdated(
|
|
const VideoBitrateAllocation& bitrates) {
|
|
for (int sid = 0; sid < num_spatial_layers_; ++sid) {
|
|
// Enable/disable spatial layers independetely.
|
|
bool active = true;
|
|
for (int tid = 0; tid < num_temporal_layers_; ++tid) {
|
|
// To enable temporal layer, require bitrates for lower temporal layers.
|
|
active = active && bitrates.GetBitrate(sid, tid) > 0;
|
|
SetDecodeTargetIsActive(sid, tid, active);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace webrtc
|