Documentation
¶
Overview ¶
Package rtpfragmented contains a RTP decoder and encoder for codecs with access units that can be fragmented.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrMorePacketsNeeded = errors.New("need more packets")
ErrMorePacketsNeeded is returned when more packets are needed.
Functions ¶
This section is empty.
Types ¶
type Decoder ¶
type Decoder struct {
// contains filtered or unexported fields
}
Decoder is a RTP decoder for codecs with access units that can be fragmented.
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
// maximum size of packet payloads (optional).
// It defaults to 1450.
PayloadMaxSize int
// contains filtered or unexported fields
}
Encoder is a RTP encoder for codecs with access units that can be fragmented.
Click to show internal directories.
Click to hide internal directories.