mediasoup 3.16.3 → 3.16.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediasoup",
3
- "version": "3.16.3",
3
+ "version": "3.16.4",
4
4
  "description": "Cutting Edge WebRTC Video Conferencing",
5
5
  "contributors": [
6
6
  "Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
@@ -203,7 +203,7 @@ namespace Channel
203
203
 
204
204
  if (message->data_type() == FBS::Message::Body::Request)
205
205
  {
206
- ChannelRequest* request;
206
+ ChannelRequest* request{ nullptr };
207
207
 
208
208
  try
209
209
  {
@@ -225,7 +225,7 @@ namespace Channel
225
225
  }
226
226
  else if (message->data_type() == FBS::Message::Body::Notification)
227
227
  {
228
- ChannelNotification* notification;
228
+ ChannelNotification* notification{ nullptr };
229
229
 
230
230
  try
231
231
  {
@@ -284,7 +284,7 @@ namespace Channel
284
284
 
285
285
  if (message->data_type() == FBS::Message::Body::Request)
286
286
  {
287
- ChannelRequest* request;
287
+ ChannelRequest* request{ nullptr };
288
288
 
289
289
  try
290
290
  {
@@ -306,7 +306,7 @@ namespace Channel
306
306
  }
307
307
  else if (message->data_type() == FBS::Message::Body::Notification)
308
308
  {
309
- ChannelNotification* notification;
309
+ ChannelNotification* notification{ nullptr };
310
310
 
311
311
  try
312
312
  {
@@ -265,8 +265,11 @@ namespace RTC
265
265
 
266
266
  // Store the packet for the scenario in which this packet is part of the
267
267
  // key frame and it arrived before the first packet of the key frame.
268
- StorePacketInTargetLayerRetransmissionBuffer(
269
- targetLayerRetransmissionBuffer, packet, sharedPacket);
268
+ //
269
+ // TODO: Uncomment once this issue is fixed:
270
+ // https://github.com/versatica/mediasoup/issues/1554
271
+ // StorePacketInTargetLayerRetransmissionBuffer(
272
+ // targetLayerRetransmissionBuffer, packet, sharedPacket);
270
273
 
271
274
  return;
272
275
  }
@@ -347,7 +347,10 @@ namespace RTC
347
347
 
348
348
  // Store the packet for the scenario in which this packet is part of the
349
349
  // key frame and it arrived before the first packet of the key frame.
350
- StorePacketInTargetLayerRetransmissionBuffer(packet, sharedPacket);
350
+ //
351
+ // TODO: Uncomment once this issue is fixed:
352
+ // https://github.com/versatica/mediasoup/issues/1554
353
+ // StorePacketInTargetLayerRetransmissionBuffer(packet, sharedPacket);
351
354
 
352
355
  return;
353
356
  }
@@ -811,7 +811,10 @@ namespace RTC
811
811
 
812
812
  // Store the packet for the scenario in which this packet is part of the
813
813
  // key frame and it arrived before the first packet of the key frame.
814
- StorePacketInTargetLayerRetransmissionBuffer(packet, sharedPacket);
814
+ //
815
+ // TODO: Uncomment once this issue is fixed:
816
+ // https://github.com/versatica/mediasoup/issues/1554
817
+ // StorePacketInTargetLayerRetransmissionBuffer(packet, sharedPacket);
815
818
 
816
819
  return;
817
820
  }
@@ -685,7 +685,10 @@ namespace RTC
685
685
 
686
686
  // Store the packet for the scenario in which this packet is part of the
687
687
  // key frame and it arrived before the first packet of the key frame.
688
- StorePacketInTargetLayerRetransmissionBuffer(packet, sharedPacket);
688
+ //
689
+ // TODO: Uncomment once this issue is fixed:
690
+ // https://github.com/versatica/mediasoup/issues/1554
691
+ // StorePacketInTargetLayerRetransmissionBuffer(packet, sharedPacket);
689
692
 
690
693
  return;
691
694
  }