Skip to content

Commit

Permalink
Fix TestPeerConnection_Simulcast
Browse files Browse the repository at this point in the history
SSRC of 0 is consumed by probing
  • Loading branch information
Sean-Der committed Jul 21, 2024
1 parent af63d2b commit bd3aaae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peerconnection_media_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ func TestPeerConnection_Simulcast(t *testing.T) {
for ssrc, rid := range rids {
header := &rtp.Header{
Version: 2,
SSRC: uint32(ssrc),
SSRC: uint32(ssrc + 1),
SequenceNumber: sequenceNumber,
PayloadType: 96,
}
Expand Down

0 comments on commit bd3aaae

Please sign in to comment.