-
Notifications
You must be signed in to change notification settings - Fork 27
/
rtp-header.h
266 lines (237 loc) · 10.3 KB
/
rtp-header.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/******************************************************************************
* Copyright 2016-2018 Cisco Systems, Inc. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
******************************************************************************/
/**
* @file
* Header interface of RTP packets (RFC 3550), and RTCP Feedback
* packets (draft-ietf-avtcore-cc-feedback-message-01) for ns3-rmcat.
* @version 0.1.1
* @author Jiantao Fu
* @author Sergio Mena
* @author Xiaoqing Zhu
*/
#ifndef RTP_HEADER_H
#define RTP_HEADER_H
#include "ns3/header.h"
#include "ns3/type-id.h"
#include <map>
#include <set>
namespace ns3 {
void RtpHdrSetBit (uint8_t& val, uint8_t pos, bool bit);
bool RtpHdrGetBit (uint8_t val, uint8_t pos);
const uint8_t RTP_VERSION = 2;
//-------------------- RTP HEADER (RFC 3550) ----------------------//
// 0 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
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// |V=2|P|X| CC |M| PT | sequence number |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | timestamp |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | synchronization source (SSRC) identifier |
// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
// | contributing source (CSRC) identifiers |
// | .... |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
class RtpHeader : public Header
{
public:
RtpHeader ();
RtpHeader (uint8_t payloadType);
virtual ~RtpHeader ();
static ns3::TypeId GetTypeId ();
virtual ns3::TypeId GetInstanceTypeId () const;
virtual uint32_t GetSerializedSize () const;
virtual void Serialize (ns3::Buffer::Iterator start) const;
virtual uint32_t Deserialize (ns3::Buffer::Iterator start);
virtual void Print (std::ostream& os) const;
bool IsPadding () const;
void SetPadding (bool padding);
bool IsExtension () const;
void SetExtension (bool extension);
bool IsMarker () const;
void SetMarker (bool marker);
uint8_t GetPayloadType () const;
void SetPayloadType (uint8_t payloadType);
uint16_t GetSequence () const;
void SetSequence (uint16_t sequence);
uint32_t GetSsrc () const;
void SetSsrc (uint32_t ssrc);
uint32_t GetTimestamp () const;
void SetTimestamp (uint32_t timestamp);
const std::set<uint32_t>& GetCsrcs () const;
bool AddCsrc (uint32_t csrc);
protected:
bool m_padding;
bool m_extension;
bool m_marker;
uint8_t m_payloadType;
uint16_t m_sequence;
uint32_t m_timestamp;
uint32_t m_ssrc;
std::set<uint32_t> m_csrcs;
};
//----------------- Common RCTP HEADER (RFC 3550) -----------------//
// 0 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
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// |V=2|P| Type/Cnt| PT | length |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | SSRC of RTCP packet sender |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
class RtcpHeader : public Header
{
public:
enum PayloadType {
RTCP_SMPTETC = 194,
RTCP_IJ = 195,
RTCP_SR = 200,
RTCP_RR = 201,
RTCP_SDES = 202,
RTCP_BYE = 203,
RTCP_APP = 204,
RTP_FB = 205,
RTP_PSFB = 206,
RTP_XR = 207,
RTP_RSI = 209,
RTP_TOKEN = 210,
RTP_IDMS = 211,
RTP_RSNM = 213,
};
enum SdesType{
RTCP_SDES_END = 0,
RTCP_SDES_CNAME = 1,
RTCP_SDES_NAME = 2,
RTCP_SDES_EMAIL = 3,
RTCP_SDES_PHONE = 4,
RTCP_SDES_LOC = 5,
RTCP_SDES_TOOL = 6,
RTCP_SDES_NOTE = 7,
RTCP_SDES_PRIV = 8,
RTCP_SDES_APSI = 10,
};
enum RtpFeedbackType {
RTCP_RTPFB_GNACK = 1,
RTCP_RTPFB_TMMBR = 3,
RTCP_RTPFB_TMMBN = 4,
RTCP_RTPFB_SR_REQ = 5,
RTCP_RTPFB_RAMS = 6,
RTCP_RTPFB_TLLEI = 7,
RTCP_RTPFB_ECN_FB = 8,
RTCP_RTPFB_PR = 9,
RTCP_RTPFB_CC = 15, // TODO (deferred): Change to IANA-assigned value
};
RtcpHeader ();
RtcpHeader (uint8_t packetType);
RtcpHeader (uint8_t packetType, uint8_t subType);
virtual ~RtcpHeader ();
virtual void Clear ();
static ns3::TypeId GetTypeId ();
virtual ns3::TypeId GetInstanceTypeId () const;
virtual uint32_t GetSerializedSize () const;
virtual void Serialize (ns3::Buffer::Iterator start) const;
virtual uint32_t Deserialize (ns3::Buffer::Iterator start);
virtual void Print (std::ostream& os) const;
bool IsPadding () const;
void SetPadding (bool padding);
uint8_t GetTypeOrCount () const;
void SetTypeOrCount (uint8_t typeOrCnt);
uint8_t GetPacketType () const;
void SetPacketType (uint8_t packetType);
uint32_t GetSendSsrc () const;
void SetSendSsrc (uint32_t sendSsrc);
protected:
void PrintN (std::ostream& os) const;
void SerializeCommon (ns3::Buffer::Iterator& start) const;
uint32_t DeserializeCommon (ns3::Buffer::Iterator& start);
bool m_padding;
uint8_t m_typeOrCnt;
uint8_t m_packetType;
uint16_t m_length;
uint32_t m_sendSsrc;
};
//-- RCTP CCFB HEADER (draft-ietf-avtcore-cc-feedback-message-01) -//
// 0 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
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// |V=2|P| FMT=CCFB| PT=RTPFB=205 | length |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | SSRC of RTCP packet sender |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | SSRC of 1st RTP Stream |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | begin_seq | end_seq |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// |L|ECN| Arrival time offset | ... .
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// . .
// . .
// . .
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | SSRC of nth RTP Stream |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | begin_seq | end_seq |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// |L|ECN| Arrival time offset | ... |
// . .
// . .
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | Report Timestamp |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
class CCFeedbackHeader : public RtcpHeader
{
public:
class MetricBlock
{
public:
static constexpr uint16_t m_overrange = 0x1FFE;
static constexpr uint16_t m_unavailable = 0x1FFF;
uint8_t m_ecn;
uint64_t m_timestampUs;
uint16_t m_ato;
};
enum RejectReason {
CCFB_NONE, /**< Feedback was added correctly */
CCFB_DUPLICATE, /**< Feedback of duplicate packet */
CCFB_BAD_ECN, /**< ECN value takes more than two bits */
CCFB_TOO_LONG, /**< Adding this sequence number would make the packet too long */
};
typedef std::map<uint16_t /* sequence */, MetricBlock> ReportBlock_t;
CCFeedbackHeader ();
virtual ~CCFeedbackHeader ();
virtual void Clear ();
static ns3::TypeId GetTypeId ();
virtual ns3::TypeId GetInstanceTypeId () const;
virtual uint32_t GetSerializedSize () const;
virtual void Serialize (ns3::Buffer::Iterator start) const;
virtual uint32_t Deserialize (ns3::Buffer::Iterator start);
virtual void Print (std::ostream& os) const;
RejectReason AddFeedback (uint32_t ssrc, uint16_t seq, uint64_t timestampUs, uint8_t ecn=0);
bool Empty () const;
void GetSsrcList (std::set<uint32_t>& rv) const;
bool GetMetricList (uint32_t ssrc, std::vector<std::pair<uint16_t, MetricBlock> >& rv) const;
protected:
static std::pair<uint16_t, uint16_t> CalculateBeginStopSeq (const ReportBlock_t& rb);
static uint64_t NtpToUs (uint32_t ntp);
static uint32_t UsToNtp (uint64_t tsUs);
static uint16_t NtpToAto (uint32_t ntp, uint32_t ntpRef);
static uint32_t AtoToNtp (uint16_t ato, uint32_t ntpRef);
bool UpdateLength ();
std::map<uint32_t /* SSRC */, ReportBlock_t> m_reportBlocks;
uint64_t m_latestTsUs;
};
}
#endif /* RTP_HEADER_H */