Documentation ¶
Overview ¶
Package rtplpcm contains a RTP/LPCM decoder and encoder.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Decoder ¶
type Decoder struct { BitDepth int SampleRate int ChannelCount int // contains filtered or unexported fields }
Decoder is a RTP/LPCM decoder.
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 BitDepth int SampleRate int ChannelCount int // contains filtered or unexported fields }
Encoder is a RTP/LPCM encoder.
Click to show internal directories.
Click to hide internal directories.