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));