rtpmpegts

package
v5.5.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 24, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Package rtpmpegts contains RTP decoder and encoder for MPEG-TS streams.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Decoder

type Decoder struct{}

Decoder is a RTP/MPEG-TS decoder. Specification: RFC2250

func (*Decoder) Decode

func (d *Decoder) Decode(pkt *rtp.Packet) ([][]byte, error)

Decode decodes MPEG-TS packets from a RTP packet.

func (*Decoder) Init

func (d *Decoder) Init() error

Init initializes the decoder.

type Encoder

type Encoder struct {
	// 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 1316. (multiple of 188)
	PayloadMaxSize int
	// contains filtered or unexported fields
}

Encoder is a RTP/MPEG-TS encoder. Specification: RFC2250

func (*Encoder) Encode

func (e *Encoder) Encode(tsPackets [][]byte) ([]*rtp.Packet, error)

Encode encodes MPEG-TS packets into RTP packets.

func (*Encoder) Init

func (e *Encoder) Init() error

Init initializes the encoder.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL