From 5fd9efdfcc3212046c1e051b39889fa26b9318f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Tue, 31 Jan 2023 10:01:11 +0100 Subject: [PATCH] cosmetic --- worker/src/RTC/SimulcastConsumer.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/worker/src/RTC/SimulcastConsumer.cpp b/worker/src/RTC/SimulcastConsumer.cpp index d422438f9c2..ef2e26e253c 100644 --- a/worker/src/RTC/SimulcastConsumer.cpp +++ b/worker/src/RTC/SimulcastConsumer.cpp @@ -828,10 +828,11 @@ namespace RTC this->tsOffset = tsOffset; // Sync our RTP stream's sequence number. - // If previous frame has not been sent completely when we switch layer, we can tell - // libwebrtc that previous frame is incomplete by skipping one RTP sequence number. - // 'packet->GetSequenceNumber() -2' may increase SeqManager::base and increase the - // output sequence number. + // If previous frame has not been sent completely when we switch layer, + // we can tell libwebrtc that previous frame is incomplete by skipping + // one RTP sequence number. + // 'packet->GetSequenceNumber() -2' may increase SeqManager::base and + // increase the output sequence number. // https://github.com/versatica/mediasoup/issues/408 this->rtpSeqManager.Sync(packet->GetSequenceNumber() - (this->lastSentPacketHasMarker ? 1 : 2));