Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions attributes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ func TestAttributesGetRTPHeader(t *testing.T) {
SequenceNumber: 0,
Timestamp: 0,
SSRC: 0,
CSRC: []uint32{},
ExtensionProfile: 0,
Extensions: nil,
},
Expand All @@ -50,7 +49,6 @@ func TestAttributesGetRTPHeader(t *testing.T) {
SequenceNumber: 0,
Timestamp: 0,
SSRC: 0,
CSRC: []uint32{},
ExtensionProfile: 0,
Extensions: nil,
}
Expand All @@ -72,7 +70,6 @@ func TestAttributesGetRTPHeader(t *testing.T) {
SequenceNumber: 0,
Timestamp: 0,
SSRC: 0,
CSRC: []uint32{},
ExtensionProfile: 0,
Extensions: nil,
}, Payload: make([]byte, 1000)}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
require (
github.com/pion/logging v0.2.4
github.com/pion/rtcp v1.2.16
github.com/pion/rtp v1.8.23
github.com/pion/rtp v1.8.24
github.com/pion/transport/v3 v3.0.8
github.com/stretchr/testify v1.11.1
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ github.com/pion/randutil v0.1.0 h1:CFG1UdESneORglEsnimhUjf33Rwjubwj6xfiOXBa3mA=
github.com/pion/randutil v0.1.0/go.mod h1:XcJrSMMbbMRhASFVOlj/5hQial/Y8oH/HVo7TBZq+j8=
github.com/pion/rtcp v1.2.16 h1:fk1B1dNW4hsI78XUCljZJlC4kZOPk67mNRuQ0fcEkSo=
github.com/pion/rtcp v1.2.16/go.mod h1:/as7VKfYbs5NIb4h6muQ35kQF/J0ZVNz2Z3xKoCBYOo=
github.com/pion/rtp v1.8.23 h1:kxX3bN4nM97DPrVBGq5I/Xcl332HnTHeP1Swx3/MCnU=
github.com/pion/rtp v1.8.23/go.mod h1:rF5nS1GqbR7H/TCpKwylzeq6yDM+MM6k+On5EgeThEM=
github.com/pion/rtp v1.8.24 h1:+ICyZXUQDv95EsHN70RrA4XKJf5MGWyC6QQc1u6/ynI=
github.com/pion/rtp v1.8.24/go.mod h1:rF5nS1GqbR7H/TCpKwylzeq6yDM+MM6k+On5EgeThEM=
github.com/pion/transport/v3 v3.0.8 h1:oI3myyYnTKUSTthu/NZZ8eu2I5sHbxbUNNFW62olaYc=
github.com/pion/transport/v3 v3.0.8/go.mod h1:+c2eewC5WJQHiAA46fkMMzoYZSuGzA/7E2FPrOYHctQ=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
Expand Down
1 change: 0 additions & 1 deletion pkg/flexfec/flexfec_03_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ func generatePackets(t *testing.T, seqs []uint16) ([]rtp.Packet, []rtp.Packet) {
SequenceNumber: seq,
Timestamp: 3653407706,
SSRC: protectedStreamSSRC,
CSRC: []uint32{},
},
Payload: payload,
}
Expand Down
2 changes: 0 additions & 2 deletions pkg/flexfec/flexfec_benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ func generateMediaPackets(n int, startSeq uint16) []rtp.Packet {
SequenceNumber: startSeq + uint16(i), //nolint:gosec // G115
Timestamp: 3653407706,
SSRC: protectedStreamSSRC,
CSRC: []uint32{},
},
Payload: payload,
}
Expand Down Expand Up @@ -68,7 +67,6 @@ func generateMediaPacketsWithSizes(n int, startSeq uint16, minSize, maxSize int)
SequenceNumber: startSeq + uint16(i), //nolint:gosec // G115
Timestamp: 3653407706,
SSRC: protectedStreamSSRC,
CSRC: []uint32{},
},
Payload: payload,
}
Expand Down
Loading