Documentation ¶
Overview ¶
Package rtpav1 contains a RTP/AV1 decoder and encoder.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrMorePacketsNeeded = errors.New("need more packets")
ErrMorePacketsNeeded is returned when more packets are needed.
View Source
var ErrNonStartingPacketAndNoPrevious = errors.New(
"received a non-starting fragment without any previous starting fragment")
ErrNonStartingPacketAndNoPrevious is returned when we received a non-starting packet of a fragmented NALU and we didn't received anything before. It's normal to receive this when decoding a stream that has been already running for some time.
Functions ¶
This section is empty.
Types ¶
type Decoder ¶
type Decoder struct {
// contains filtered or unexported fields
}
Decoder is a RTP/AV1 decoder. Specification: https://aomediacodec.github.io/av1-rtp-spec/
func (*Decoder) DecodeUntilMarker ¶
DecodeUntilMarker decodes a temporal unit from a RTP packet.
type Encoder ¶
type Encoder struct { // payload type of packets. PayloadType uint8 // SSRC of packets (optional). // It defaults to a random value. SSRC *uint32 // initial sequence number of packets (optional). // It defaults to a random value. InitialSequenceNumber *uint16 // initial timestamp of packets (optional). // It defaults to a random value. InitialTimestamp *uint32 // maximum size of packet payloads (optional). // It defaults to 1460. PayloadMaxSize int // contains filtered or unexported fields }
Encoder is a RTP/AV1 encoder. Specification: https://aomediacodec.github.io/av1-rtp-spec/
Click to show internal directories.
Click to hide internal directories.