diff --git a/pkg/sfu/codecmunger/vp8.go b/pkg/sfu/codecmunger/vp8.go index c26ea0e3c..ca352efb2 100644 --- a/pkg/sfu/codecmunger/vp8.go +++ b/pkg/sfu/codecmunger/vp8.go @@ -240,7 +240,7 @@ func (v *VP8) UpdateAndGet(extPkt *buffer.ExtPacket, snOutOfOrder bool, snHasGap // if there is a gap, packet is forwarded irrespective of temporal layer as it cannot be determined // which layer the missing packets belong to. A layer could have multiple packets. So, keep track - // of pictures that are forwarded even though they will be filterd out based on temporal layer + // of pictures that are forwarded even though they will be filtered out based on temporal layer // requirements. That allows forwarding of the complete picture. if vp8.T && vp8.TID > uint8(maxTemporalLayer) { v.exemptedPictureIds.Set(extPictureId, true) diff --git a/pkg/sfu/connectionquality/scorer.go b/pkg/sfu/connectionquality/scorer.go index b38355c06..61019d013 100644 --- a/pkg/sfu/connectionquality/scorer.go +++ b/pkg/sfu/connectionquality/scorer.go @@ -382,7 +382,7 @@ func (q *qualityScorer) updateAtLocked(stat *windowStat, at time.Time) { // considered (as long as enough time has passed since unmute). // // Similarly, when paused (possibly due to congestion), score is immediately - // set to cMinScore for responsiveness. The layer transision is reest. + // set to cMinScore for responsiveness. The layer transition is reset. // On a resume, quality climbs back up using normal operation. if q.isMuted() || !q.isUnmutedEnough(at) || q.isLayerMuted() || q.isPaused() { q.lastUpdateAt = at diff --git a/pkg/sfu/redreceiver_test.go b/pkg/sfu/redreceiver_test.go index 72261f7db..d19181446 100644 --- a/pkg/sfu/redreceiver_test.go +++ b/pkg/sfu/redreceiver_test.go @@ -204,7 +204,7 @@ func TestRedReceiver(t *testing.T) { verifyRedEncodings(t, dt.lastReceivedPkt, expectPkt) } - // and then a few packets with a large timestmap jump, should contain only primary + // and then a few packets with a large timestamp jump, should contain only primary for _, pkt := range generatePkts(header, 4, 40*tsStep) { red.ForwardRTP(&buffer.ExtPacket{ Packet: pkt,