Documentation ¶
Overview ¶
Package rtph264 contains a RTP/H264 decoder and encoder.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrMorePacketsNeeded = errors.New("need more packets")
ErrMorePacketsNeeded is returned when more packets are needed.
var ErrNonStartingPacketAndNoPrevious = errors.New(
"decoded a non-starting fragmented packet without any previous starting packet")
ErrNonStartingPacketAndNoPrevious is returned when we decoded a non-starting packet of a fragmented NALU and we didn't received anything before. It's normal to receive this when we are 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/H264 decoder.
func (*Decoder) DecodeUntilMarker ¶
DecodeUntilMarker decodes NALUs from a RTP/H264 packet and puts them in a buffer. When a packet has the marker flag (meaning that all the NALUs with the same PTS have been received), the buffer is returned.
type Encoder ¶
type Encoder struct {
// contains filtered or unexported fields
}
Encoder is a RTP/H264 encoder.
type PacketConnReader ¶
type PacketConnReader struct {
net.PacketConn
}
PacketConnReader creates a io.Reader around a net.PacketConn.