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

This change adds classes so that we later can plumb information about received packets to each audio and video frame. It's not wired up to do anything yet. Bug: webrtc:10668 Change-Id: I962df493a76692f668314f78d6792d7636c5a31b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/138203 Commit-Queue: Chen Xing <chxg@google.com> Reviewed-by: Minyue Li <minyue@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28138}
84 lines
2.7 KiB
C++
84 lines
2.7 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.
|
|
*/
|
|
|
|
#ifndef API_RTP_PACKET_INFO_H_
|
|
#define API_RTP_PACKET_INFO_H_
|
|
|
|
#include <cstdint>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "absl/types/optional.h"
|
|
#include "api/rtp_headers.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// Structure to hold information about a received |RtpPacket|.
|
|
class RtpPacketInfo {
|
|
public:
|
|
RtpPacketInfo();
|
|
|
|
RtpPacketInfo(uint32_t ssrc,
|
|
std::vector<uint32_t> csrcs,
|
|
uint16_t sequence_number,
|
|
uint32_t rtp_timestamp,
|
|
absl::optional<uint8_t> audio_level,
|
|
int64_t receive_time_ms);
|
|
|
|
RtpPacketInfo(const RTPHeader& rtp_header, int64_t receive_time_ms);
|
|
|
|
RtpPacketInfo(const RtpPacketInfo& other) = default;
|
|
RtpPacketInfo(RtpPacketInfo&& other) = default;
|
|
RtpPacketInfo& operator=(const RtpPacketInfo& other) = default;
|
|
RtpPacketInfo& operator=(RtpPacketInfo&& other) = default;
|
|
|
|
uint32_t ssrc() const { return ssrc_; }
|
|
void set_ssrc(uint32_t value) { ssrc_ = value; }
|
|
|
|
const std::vector<uint32_t>& csrcs() const { return csrcs_; }
|
|
void set_csrcs(std::vector<uint32_t> value) { csrcs_ = std::move(value); }
|
|
|
|
uint16_t sequence_number() const { return sequence_number_; }
|
|
void set_sequence_number(uint16_t value) { sequence_number_ = value; }
|
|
|
|
uint32_t rtp_timestamp() const { return rtp_timestamp_; }
|
|
void set_rtp_timestamp(uint32_t value) { rtp_timestamp_ = value; }
|
|
|
|
absl::optional<uint8_t> audio_level() const { return audio_level_; }
|
|
void set_audio_level(absl::optional<uint8_t> value) { audio_level_ = value; }
|
|
|
|
int64_t receive_time_ms() const { return receive_time_ms_; }
|
|
void set_receive_time_ms(int64_t value) { receive_time_ms_ = value; }
|
|
|
|
private:
|
|
// Fields from the RTP header:
|
|
// https://tools.ietf.org/html/rfc3550#section-5.1
|
|
uint32_t ssrc_;
|
|
std::vector<uint32_t> csrcs_;
|
|
uint16_t sequence_number_;
|
|
uint32_t rtp_timestamp_;
|
|
|
|
// Fields from the Audio Level header extension:
|
|
// https://tools.ietf.org/html/rfc6464#section-3
|
|
absl::optional<uint8_t> audio_level_;
|
|
|
|
// Local |webrtc::Clock|-based timestamp of when the packet was received.
|
|
int64_t receive_time_ms_;
|
|
};
|
|
|
|
bool operator==(const RtpPacketInfo& lhs, const RtpPacketInfo& rhs);
|
|
|
|
inline bool operator!=(const RtpPacketInfo& lhs, const RtpPacketInfo& rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // API_RTP_PACKET_INFO_H_
|