normalize names

This commit is contained in:
aler9
2021-01-06 12:26:07 +01:00
parent 85e7127cfe
commit 8e70ac4d59
15 changed files with 117 additions and 117 deletions

View File

@@ -50,20 +50,20 @@ func (sc StreamDelivery) String() string {
type StreamType int
const (
// StreamTypeRtp means that the stream contains RTP packets
StreamTypeRtp StreamType = iota
// StreamTypeRTP means that the stream contains RTP packets
StreamTypeRTP StreamType = iota
// StreamTypeRtcp means that the stream contains RTCP packets
StreamTypeRtcp
// StreamTypeRTCP means that the stream contains RTCP packets
StreamTypeRTCP
)
// String implements fmt.Stringer
func (st StreamType) String() string {
switch st {
case StreamTypeRtp:
case StreamTypeRTP:
return "RTP"
case StreamTypeRtcp:
case StreamTypeRTCP:
return "RTCP"
}
return "unknown"