Ignore receiver reports that have a sequence number before first packet. (#1745)

This commit is contained in:
Raja Subramanian
2023-05-28 10:05:35 +05:30
committed by GitHub
parent e99aabd908
commit ea57e4f2c1
5 changed files with 14 additions and 13 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ func (t *Track) SetMaxLayer(layer buffer.VideoLayer) bool {
}
func (t *Track) WritePaddingRTP(bytesToSend int) int {
return t.downTrack.WritePaddingRTP(bytesToSend, false)
return t.downTrack.WritePaddingRTP(bytesToSend, false, false)
}
func (t *Track) AllocateOptimal(allowOvershoot bool) sfu.VideoAllocation {