mirror of
https://github.com/aler9/gortsplib
synced 2025-10-05 07:06:58 +08:00
168 lines
3.5 KiB
Go
168 lines
3.5 KiB
Go
// Package formats contains RTP format definitions, decoders and encoders.
|
|
package formats
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/pion/rtp"
|
|
psdp "github.com/pion/sdp/v3"
|
|
)
|
|
|
|
func getFormatAttribute(attributes []psdp.Attribute, payloadType uint8, key string) string {
|
|
for _, attr := range attributes {
|
|
if attr.Key == key {
|
|
v := strings.TrimSpace(attr.Value)
|
|
if parts := strings.SplitN(v, " ", 2); len(parts) == 2 {
|
|
if tmp, err := strconv.ParseInt(parts[0], 10, 8); err == nil && uint8(tmp) == payloadType {
|
|
return parts[1]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func getCodecAndClock(rtpMap string) (string, string) {
|
|
parts2 := strings.SplitN(rtpMap, "/", 2)
|
|
if len(parts2) != 2 {
|
|
return "", ""
|
|
}
|
|
|
|
return parts2[0], parts2[1]
|
|
}
|
|
|
|
func decodeFMTP(enc string) map[string]string {
|
|
if enc == "" {
|
|
return nil
|
|
}
|
|
|
|
ret := make(map[string]string)
|
|
|
|
for _, kv := range strings.Split(enc, ";") {
|
|
kv = strings.Trim(kv, " ")
|
|
|
|
if len(kv) == 0 {
|
|
continue
|
|
}
|
|
|
|
tmp := strings.SplitN(kv, "=", 2)
|
|
if len(tmp) != 2 {
|
|
continue
|
|
}
|
|
|
|
ret[strings.ToLower(tmp[0])] = tmp[1]
|
|
}
|
|
|
|
return ret
|
|
}
|
|
|
|
// Format is a RTP format of a media.
|
|
// It defines a codec and a payload type used to transmit the media.
|
|
type Format interface {
|
|
// String returns a description of the format.
|
|
String() string
|
|
|
|
// ClockRate returns the clock rate.
|
|
ClockRate() int
|
|
|
|
// PayloadType returns the payload type.
|
|
PayloadType() uint8
|
|
|
|
unmarshal(payloadType uint8, clock string, codec string, rtpmap string, fmtp map[string]string) error
|
|
|
|
// Marshal encodes the format in SDP format.
|
|
Marshal() (string, map[string]string)
|
|
|
|
// PTSEqualsDTS checks whether PTS is equal to DTS in RTP packets.
|
|
PTSEqualsDTS(*rtp.Packet) bool
|
|
}
|
|
|
|
// Unmarshal decodes a format from a media description.
|
|
func Unmarshal(md *psdp.MediaDescription, payloadTypeStr string) (Format, error) {
|
|
if payloadTypeStr == "smart/1/90000" {
|
|
attr, ok := md.Attribute("rtpmap")
|
|
if ok {
|
|
i := strings.Index(attr, " TP-LINK/90000")
|
|
if i >= 0 {
|
|
payloadTypeStr = attr[:i]
|
|
}
|
|
}
|
|
}
|
|
|
|
tmp, err := strconv.ParseInt(payloadTypeStr, 10, 8)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
payloadType := uint8(tmp)
|
|
|
|
rtpMap := getFormatAttribute(md.Attributes, payloadType, "rtpmap")
|
|
codec, clock := getCodecAndClock(rtpMap)
|
|
codec = strings.ToLower(codec)
|
|
fmtp := decodeFMTP(getFormatAttribute(md.Attributes, payloadType, "fmtp"))
|
|
|
|
format := func() Format {
|
|
switch {
|
|
case md.MediaName.Media == "video":
|
|
switch {
|
|
case payloadType == 26:
|
|
return &MJPEG{}
|
|
|
|
case payloadType == 32:
|
|
return &MPEG2Video{}
|
|
|
|
case codec == "mp4v-es" && clock == "90000":
|
|
return &MPEG4Video{}
|
|
|
|
case codec == "h264" && clock == "90000":
|
|
return &H264{}
|
|
|
|
case codec == "h265" && clock == "90000":
|
|
return &H265{}
|
|
|
|
case codec == "vp8" && clock == "90000":
|
|
return &VP8{}
|
|
|
|
case codec == "vp9" && clock == "90000":
|
|
return &VP9{}
|
|
}
|
|
|
|
case md.MediaName.Media == "audio":
|
|
switch {
|
|
case payloadType == 0, payloadType == 8:
|
|
return &G711{}
|
|
|
|
case payloadType == 9:
|
|
return &G722{}
|
|
|
|
case payloadType == 14:
|
|
return &MPEG2Audio{}
|
|
|
|
case codec == "l8", codec == "l16", codec == "l24":
|
|
return &LPCM{}
|
|
|
|
case codec == "mpeg4-generic":
|
|
return &MPEG4AudioGeneric{}
|
|
|
|
case codec == "mp4a-latm":
|
|
return &MPEG4AudioLATM{}
|
|
|
|
case codec == "vorbis":
|
|
return &Vorbis{}
|
|
|
|
case codec == "opus":
|
|
return &Opus{}
|
|
}
|
|
}
|
|
|
|
return &Generic{}
|
|
}()
|
|
|
|
err = format.unmarshal(payloadType, clock, codec, rtpMap, fmtp)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return format, nil
|
|
}
|