mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

Same can be achieved by having multiple Parse functions in the same RtpDependencyDescriptorExtension trait Bug: None Change-Id: I4eab0001d1ffff631a9d70fafde13e51f5c6ce36 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/340320 Reviewed-by: Philip Eliasson <philipel@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/main@{#41786}
68 lines
2.4 KiB
C++
68 lines
2.4 KiB
C++
/*
|
|
* Copyright (c) 2019 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/rtp_rtcp/source/rtp_dependency_descriptor_extension.h"
|
|
|
|
#include <bitset>
|
|
#include <cstdint>
|
|
|
|
#include "api/array_view.h"
|
|
#include "api/transport/rtp/dependency_descriptor.h"
|
|
#include "modules/rtp_rtcp/include/rtp_rtcp_defines.h"
|
|
#include "modules/rtp_rtcp/source/rtp_dependency_descriptor_reader.h"
|
|
#include "modules/rtp_rtcp/source/rtp_dependency_descriptor_writer.h"
|
|
#include "rtc_base/numerics/divide_round.h"
|
|
|
|
namespace webrtc {
|
|
|
|
constexpr RTPExtensionType RtpDependencyDescriptorExtension::kId;
|
|
constexpr std::bitset<32> RtpDependencyDescriptorExtension::kAllChainsAreActive;
|
|
|
|
bool RtpDependencyDescriptorExtension::Parse(
|
|
rtc::ArrayView<const uint8_t> data,
|
|
const FrameDependencyStructure* structure,
|
|
DependencyDescriptor* descriptor) {
|
|
RtpDependencyDescriptorReader reader(data, structure, descriptor);
|
|
return reader.ParseSuccessful();
|
|
}
|
|
|
|
size_t RtpDependencyDescriptorExtension::ValueSize(
|
|
const FrameDependencyStructure& structure,
|
|
std::bitset<32> active_chains,
|
|
const DependencyDescriptor& descriptor) {
|
|
RtpDependencyDescriptorWriter writer(/*data=*/{}, structure, active_chains,
|
|
descriptor);
|
|
return DivideRoundUp(writer.ValueSizeBits(), 8);
|
|
}
|
|
|
|
bool RtpDependencyDescriptorExtension::Write(
|
|
rtc::ArrayView<uint8_t> data,
|
|
const FrameDependencyStructure& structure,
|
|
std::bitset<32> active_chains,
|
|
const DependencyDescriptor& descriptor) {
|
|
RtpDependencyDescriptorWriter writer(data, structure, active_chains,
|
|
descriptor);
|
|
return writer.Write();
|
|
}
|
|
|
|
bool RtpDependencyDescriptorExtension::Parse(
|
|
rtc::ArrayView<const uint8_t> data,
|
|
DependencyDescriptorMandatory* descriptor) {
|
|
if (data.size() < 3) {
|
|
return false;
|
|
}
|
|
descriptor->set_first_packet_in_frame(data[0] & 0b1000'0000);
|
|
descriptor->set_last_packet_in_frame(data[0] & 0b0100'0000);
|
|
descriptor->set_template_id(data[0] & 0b0011'1111);
|
|
descriptor->set_frame_number((uint16_t{data[1]} << 8) | data[2]);
|
|
return true;
|
|
}
|
|
|
|
} // namespace webrtc
|