mediasoup-sys 0.12.1

FFI bindings to C++ libmediasoup-worker
Documentation
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
#define MS_CLASS "RTC::RTP::RtpStream"
// #define MS_LOG_DEV_LEVEL 3

#include "RTC/RTP/RtpStream.hpp"
#include "Logger.hpp"
#include "Utils.hpp"

namespace RTC
{
	namespace RTP
	{
		/* Static. */

		static constexpr uint16_t MaxDropout{ 3000 };
		static constexpr uint16_t MaxMisorder{ 1500 };
		static constexpr uint32_t RtpSeqMod{ 1 << 16 };
		static constexpr size_t ScoreHistogramLength{ 24 };

		/* Instance methods. */

		RtpStream::RtpStream(
		  RTP::RtpStream::Listener* listener,
		  SharedInterface* shared,
		  RTP::RtpStream::Params& params,
		  uint8_t initialScore)
		  : listener(listener),
		    shared(shared),
		    params(params),
		    score(initialScore),
		    activeSinceMs(this->shared->GetTimeMs())
		{
			MS_TRACE();
		}

		RtpStream::~RtpStream()
		{
			MS_TRACE();

			delete this->rtxStream;
			this->rtxStream = nullptr;
		}

		flatbuffers::Offset<FBS::RtpStream::Dump> RtpStream::FillBuffer(
		  flatbuffers::FlatBufferBuilder& builder) const
		{
			MS_TRACE();

			// Add params.
			auto params = this->params.FillBuffer(builder);

			// Add rtxStream.
			flatbuffers::Offset<FBS::RtxStream::RtxDump> rtxStream;

			if (HasRtx())
			{
				rtxStream = this->rtxStream->FillBuffer(builder);
			}

			return FBS::RtpStream::CreateDump(builder, params, this->score, rtxStream);
		}

		flatbuffers::Offset<FBS::RtpStream::Stats> RtpStream::FillBufferStats(
		  flatbuffers::FlatBufferBuilder& builder)
		{
			MS_TRACE();

			const uint64_t nowMs = this->shared->GetTimeMs();
			const auto mediaKind = this->params.mimeType.type == RTC::RtpCodecMimeType::Type::AUDIO
			                         ? FBS::RtpParameters::MediaKind::AUDIO
			                         : FBS::RtpParameters::MediaKind::VIDEO;

			auto baseStats = FBS::RtpStream::CreateBaseStatsDirect(
			  builder,
			  nowMs,
			  this->params.ssrc,
			  mediaKind,
			  this->params.mimeType.ToString().c_str(),
			  this->packetsLost,
			  this->fractionLost,
			  this->jitter,
			  this->packetsDiscarded,
			  this->packetsRetransmitted,
			  this->packetsRepaired,
			  this->nackCount,
			  this->nackPacketCount,
			  this->pliCount,
			  this->firCount,
			  !this->params.rid.empty() ? this->params.rid.c_str() : nullptr,
			  this->params.rtxSsrc ? flatbuffers::Optional<uint32_t>(this->params.rtxSsrc)
			                       : flatbuffers::nullopt,
			  this->rtxStream ? this->rtxStream->GetPacketsDiscarded() : 0,
			  this->rtt > 0.0f ? this->rtt : 0,
			  this->score);

			return FBS::RtpStream::CreateStats(
			  builder, FBS::RtpStream::StatsData::BaseStats, baseStats.Union());
		}

		void RtpStream::SetRtx(uint8_t payloadType, uint32_t ssrc)
		{
			MS_TRACE();

			this->params.rtxPayloadType = payloadType;
			this->params.rtxSsrc        = ssrc;

			if (HasRtx())
			{
				delete this->rtxStream;
				this->rtxStream = nullptr;
			}

			// Set RTX stream params.
			RTP::RtxStream::Params params;

			params.ssrc             = ssrc;
			params.payloadType      = payloadType;
			params.mimeType.type    = GetMimeType().type;
			params.mimeType.subtype = RTC::RtpCodecMimeType::Subtype::RTX;
			params.clockRate        = GetClockRate();
			params.rrid             = GetRid();
			params.cname            = GetCname();

			// Tell the RtpCodecMimeType to update its string based on current type and subtype.
			params.mimeType.UpdateMimeType();

			this->rtxStream = new RTP::RtxStream(this->shared, params);
		}

		bool RtpStream::ReceiveStreamPacket(const RTP::Packet* packet)
		{
			MS_TRACE();

			const uint16_t seq = packet->GetSequenceNumber();

			// If this is the first packet seen, initialize stuff.
			if (!this->started)
			{
				InitSeq(seq);

				this->started     = true;
				this->maxSeq      = seq - 1;
				this->maxPacketTs = packet->GetTimestamp();
				this->maxPacketMs = this->shared->GetTimeMs();
			}

			// If not a valid packet ignore it.
			if (!UpdateSeq(packet))
			{
				MS_WARN_TAG(
				  rtp,
				  "invalid packet [ssrc:%" PRIu32 ", seq:%" PRIu16 "]",
				  packet->GetSsrc(),
				  packet->GetSequenceNumber());

				return false;
			}

			// Update highest seen RTP timestamp.
			if (Utils::Number::IsHigherThan<uint32_t>(packet->GetTimestamp(), this->maxPacketTs))
			{
				this->maxPacketTs = packet->GetTimestamp();
				this->maxPacketMs = this->shared->GetTimeMs();
			}

			return true;
		}

		void RtpStream::ResetScore(uint8_t score, bool notify)
		{
			MS_TRACE();

			this->scores.clear();

			if (this->score != score)
			{
				auto previousScore = this->score;

				this->score = score;

				// If previous score was 0 (and new one is not 0) then update activeSinceMs.
				if (previousScore == 0u)
				{
					this->activeSinceMs = this->shared->GetTimeMs();
				}

				// Notify the listener.
				if (notify)
				{
					this->listener->OnRtpStreamScore(this, score, previousScore);
				}
			}
		}

		bool RtpStream::UpdateSeq(const RTP::Packet* packet)
		{
			MS_TRACE();

			const uint16_t seq    = packet->GetSequenceNumber();
			const uint16_t udelta = seq - this->maxSeq;

			// If the new packet sequence number is greater than the max seen but not
			// "so much bigger", accept it.
			// NOTE: udelta also handles the case of a new cycle, this is:
			//    maxSeq:65536, seq:0 => udelta:1
			if (udelta < MaxDropout)
			{
				// In order, with permissible gap.
				if (seq < this->maxSeq)
				{
					// Sequence number wrapped: count another 64K cycle.
					this->cycles += RtpSeqMod;
				}

				this->maxSeq = seq;

				// Timestamp moved backwards despite in-order sequence number. Likely
				// caused by prolonged Producer inactivity (e.g., overnight pause).
				if (Utils::Number::IsLowerThan<uint32_t>(packet->GetTimestamp(), this->maxPacketTs))
				{
					MS_DEBUG_TAG(
					  rtp,
					  "timestamp moved backwards, updating [ssrc:%" PRIu32 ", seq:%" PRIu16
					  ", old maxPacketTs:%" PRIu32 ", new maxPacketTs:%" PRIu32 "]",
					  packet->GetSsrc(),
					  packet->GetSequenceNumber(),
					  this->maxPacketTs,
					  packet->GetTimestamp());

					this->maxPacketTs = packet->GetTimestamp();
					this->maxPacketMs = this->shared->GetTimeMs();
				}
			}
			// Too old packet received (older than the allowed misorder).
			// Or too new packet (more than acceptable dropout).
			else if (udelta <= RtpSeqMod - MaxMisorder)
			{
				// The sequence number made a very large jump. If two sequential packets
				// arrive, accept the latter.
				if (seq == this->badSeq)
				{
					// Two sequential packets. Assume that the other side restarted without
					// telling us so just re-sync (i.e., pretend this was the first packet).
					MS_WARN_TAG(
					  rtp,
					  "too bad sequence number, re-syncing RTP [ssrc:%" PRIu32 ", seq:%" PRIu16 "]",
					  packet->GetSsrc(),
					  packet->GetSequenceNumber());

					InitSeq(seq);

					this->maxPacketTs = packet->GetTimestamp();
					this->maxPacketMs = this->shared->GetTimeMs();

					// Notify the subclass about it.
					UserOnSequenceNumberReset();
				}
				else
				{
					MS_WARN_TAG(
					  rtp,
					  "bad sequence number, ignoring packet [ssrc:%" PRIu32 ", seq:%" PRIu16 "]",
					  packet->GetSsrc(),
					  packet->GetSequenceNumber());

					this->badSeq = (seq + 1) & (RtpSeqMod - 1);

					// Packet discarded due to late or early arriving.
					this->packetsDiscarded++;

					return false;
				}
			}
			// Acceptable misorder.
			else
			{
				// Do nothing.
			}

			return true;
		}

		void RtpStream::UpdateScore(uint8_t score)
		{
			MS_TRACE();

			// Add the score into the histogram.
			if (this->scores.size() == ScoreHistogramLength)
			{
				this->scores.erase(this->scores.begin());
			}

			auto previousScore = this->score;

			// Compute new effective score taking into accout entries in the histogram.
			this->scores.push_back(score);

			/*
			 * Scoring mechanism is a weighted average.
			 *
			 * The more recent the score is, the more weight it has.
			 * The oldest score has a weight of 1 and subsequent scores weight is
			 * increased by one sequentially.
			 *
			 * Ie:
			 * - scores: [1,2,3,4]
			 * - this->scores = ((1) + (2+2) + (3+3+3) + (4+4+4+4)) / 10 = 2.8 => 3
			 */

			size_t weight{ 0 };
			size_t samples{ 0 };
			size_t totalScore{ 0 };

			for (auto score : this->scores)
			{
				weight++;
				samples += weight;
				totalScore += weight * score;
			}

			// clang-tidy "thinks" that this can lead to division by zero but we are
			// smarter.
			// NOLINTNEXTLINE(clang-analyzer-core.DivideZero)
			this->score = static_cast<uint8_t>(std::round(static_cast<double>(totalScore) / samples));

			// Call the listener if the global score has changed.
			if (this->score != previousScore)
			{
				MS_DEBUG_TAG(
				  score,
				  "[added score:%" PRIu8 ", previous computed score:%" PRIu8 ", new computed score:%" PRIu8
				  "] (calling listener)",
				  score,
				  previousScore,
				  this->score);

				// If previous score was 0 (and new one is not 0) then update activeSinceMs.
				if (previousScore == 0u)
				{
					this->activeSinceMs = this->shared->GetTimeMs();
				}

				this->listener->OnRtpStreamScore(this, this->score, previousScore);
			}
			else
			{
#if MS_LOG_DEV_LEVEL == 3
				MS_DEBUG_TAG(
				  score,
				  "[added score:%" PRIu8 ", previous computed score:%" PRIu8 ", new computed score:%" PRIu8
				  "] (no change)",
				  score,
				  previousScore,
				  this->score);
#endif
			}
		}

		void RtpStream::PacketRetransmitted(const RTP::Packet* /*packet*/)
		{
			MS_TRACE();

			this->packetsRetransmitted++;
		}

		void RtpStream::PacketRepaired(const RTP::Packet* /*packet*/)
		{
			MS_TRACE();

			this->packetsRepaired++;
		}

		inline void RtpStream::InitSeq(uint16_t seq)
		{
			MS_TRACE();

			// Initialize/reset RTP counters.
			this->baseSeq = seq;
			this->maxSeq  = seq;
			this->badSeq  = RtpSeqMod + 1; // So seq == badSeq is false.
		}

		flatbuffers::Offset<FBS::RtpStream::Params> RtpStream::Params::FillBuffer(
		  flatbuffers::FlatBufferBuilder& builder) const
		{
			MS_TRACE();

			return FBS::RtpStream::CreateParamsDirect(
			  builder,
			  this->encodingIdx,
			  this->ssrc,
			  this->payloadType,
			  this->mimeType.ToString().c_str(),
			  this->clockRate,
			  this->rid.c_str(),
			  this->cname.c_str(),
			  this->rtxSsrc != 0 ? flatbuffers::Optional<uint32_t>(this->rtxSsrc) : flatbuffers::nullopt,
			  this->rtxSsrc != 0 ? flatbuffers::Optional<uint8_t>(this->rtxPayloadType)
			                     : flatbuffers::nullopt,
			  this->useNack,
			  this->usePli,
			  this->useFir,
			  this->useInBandFec,
			  this->useDtx,
			  this->spatialLayers,
			  this->temporalLayers);
		}
	} // namespace RTP
} // namespace RTC