mirror of
https://github.com/kunkundi/crossdesk.git
synced 2025-10-27 04:35:34 +08:00
[feat] update qos module
This commit is contained in:
84
src/rtcp/rtcp_packet/common_header.cpp
Normal file
84
src/rtcp/rtcp_packet/common_header.cpp
Normal file
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Copyright (c) 2016 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 "common_header.h"
|
||||
|
||||
#include "byte_io.h"
|
||||
#include "log.h"
|
||||
|
||||
// 0 1 1 2 3
|
||||
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
||||
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
// 0 |V=2|P| C/F |
|
||||
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
// 1 | Packet Type |
|
||||
// ----------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
// 2 | length |
|
||||
// --------------------------------+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
//
|
||||
// Common header for all RTCP packets, 4 octets.
|
||||
bool CommonHeader::Parse(const uint8_t* buffer, size_t size_bytes) {
|
||||
const uint8_t kVersion = 2;
|
||||
|
||||
if (size_bytes < kHeaderSizeBytes) {
|
||||
LOG_WARN(
|
||||
"Too little data ({}) remaining in buffer to parse RTCP header (4 "
|
||||
"bytes)",
|
||||
size_bytes);
|
||||
return false;
|
||||
}
|
||||
|
||||
uint8_t version = buffer[0] >> 6;
|
||||
if (version != kVersion) {
|
||||
LOG_WARN("Invalid RTCP header: Version must be {} but was {}",
|
||||
static_cast<int>(kVersion), static_cast<int>(version));
|
||||
return false;
|
||||
}
|
||||
|
||||
bool has_padding = (buffer[0] & 0x20) != 0;
|
||||
count_or_format_ = buffer[0] & 0x1F;
|
||||
packet_type_ = buffer[1];
|
||||
payload_size_ = ByteReader<uint16_t>::ReadBigEndian(&buffer[2]) * 4;
|
||||
payload_ = buffer + kHeaderSizeBytes;
|
||||
padding_size_ = 0;
|
||||
|
||||
if (size_bytes < kHeaderSizeBytes + payload_size_) {
|
||||
LOG_WARN(
|
||||
"Buffer too small ({}) to fit an RtcpPacket with a header and ({} "
|
||||
"bytes)",
|
||||
size_bytes, payload_size_);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (has_padding) {
|
||||
if (payload_size_ == 0) {
|
||||
LOG_WARN(
|
||||
"Invalid RTCP header: Padding bit set but 0 payload size "
|
||||
"specified");
|
||||
return false;
|
||||
}
|
||||
|
||||
padding_size_ = payload_[payload_size_ - 1];
|
||||
if (padding_size_ == 0) {
|
||||
LOG_WARN(
|
||||
"Invalid RTCP header: Padding bit set but 0 padding size specified");
|
||||
return false;
|
||||
}
|
||||
if (padding_size_ > payload_size_) {
|
||||
LOG_WARN(
|
||||
"Invalid RTCP header: Too many padding bytes ({}) for a packet "
|
||||
"payload size of ({}) bytes",
|
||||
padding_size_, payload_size_);
|
||||
return false;
|
||||
}
|
||||
payload_size_ -= padding_size_;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
48
src/rtcp/rtcp_packet/common_header.h
Normal file
48
src/rtcp/rtcp_packet/common_header.h
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Copyright (c) 2016 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.
|
||||
*/
|
||||
#ifndef MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_COMMON_HEADER_H_
|
||||
#define MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_COMMON_HEADER_H_
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
class CommonHeader {
|
||||
public:
|
||||
static constexpr size_t kHeaderSizeBytes = 4;
|
||||
|
||||
CommonHeader() {}
|
||||
CommonHeader(const CommonHeader&) = default;
|
||||
CommonHeader& operator=(const CommonHeader&) = default;
|
||||
|
||||
bool Parse(const uint8_t* buffer, size_t size_bytes);
|
||||
|
||||
uint8_t type() const { return packet_type_; }
|
||||
// Depending on packet type same header field can be used either as count or
|
||||
// as feedback message type (fmt). Caller expected to know how it is used.
|
||||
uint8_t fmt() const { return count_or_format_; }
|
||||
uint8_t count() const { return count_or_format_; }
|
||||
size_t payload_size_bytes() const { return payload_size_; }
|
||||
const uint8_t* payload() const { return payload_; }
|
||||
size_t packet_size() const {
|
||||
return kHeaderSizeBytes + payload_size_ + padding_size_;
|
||||
}
|
||||
// Returns pointer to the next RTCP packet in compound packet.
|
||||
const uint8_t* NextPacket() const {
|
||||
return payload_ + payload_size_ + padding_size_;
|
||||
}
|
||||
|
||||
private:
|
||||
uint8_t packet_type_ = 0;
|
||||
uint8_t count_or_format_ = 0;
|
||||
uint8_t padding_size_ = 0;
|
||||
uint32_t payload_size_ = 0;
|
||||
const uint8_t* payload_ = nullptr;
|
||||
};
|
||||
#endif // MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_COMMON_HEADER_H_
|
||||
@@ -10,6 +10,7 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "common_header.h"
|
||||
#include "rtcp_packet.h"
|
||||
|
||||
// RTPFB: Transport layer feedback message.
|
||||
|
||||
Reference in New Issue
Block a user