mirror of
https://github.com/aler9/gortsplib
synced 2025-10-07 08:01:14 +08:00
add rtcp receiver reports to ClientConn
This commit is contained in:
9
utils.go
9
utils.go
@@ -15,11 +15,8 @@ const (
|
||||
type StreamProtocol int
|
||||
|
||||
const (
|
||||
// StreamProtocolInvalid is an invalid protocol
|
||||
StreamProtocolInvalid StreamProtocol = iota
|
||||
|
||||
// StreamProtocolUdp means that the stream uses the UDP\ protocol
|
||||
StreamProtocolUdp
|
||||
// StreamProtocolUdp means that the stream uses the UDP protocol
|
||||
StreamProtocolUdp StreamProtocol = iota
|
||||
|
||||
// StreamProtocolTcp means that the stream uses the TCP protocol
|
||||
StreamProtocolTcp
|
||||
@@ -38,7 +35,7 @@ type StreamType int
|
||||
|
||||
const (
|
||||
// StreamTypeRtp means that the stream contains RTP packets
|
||||
StreamTypeRtp StreamType = iota + 1
|
||||
StreamTypeRtp StreamType = iota
|
||||
|
||||
// StreamTypeRtcp means that the stream contains RTCP packets
|
||||
StreamTypeRtcp
|
||||
|
Reference in New Issue
Block a user