rtptime

package
v4.11.2 Latest Latest
Warning

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

Go to latest
Published: Oct 11, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Overview

Package rtptime contains a time decoder and encoder.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Encoder deprecated

type Encoder struct {
	// Clock rate.
	ClockRate int

	// (optional) initial timestamp.
	// It defaults to a random value.
	InitialTimestamp *uint32
	// contains filtered or unexported fields
}

Encoder is a RTP timestamp encoder.

Deprecated: not used anymore.

func (*Encoder) Encode

func (e *Encoder) Encode(ts time.Duration) uint32

Encode encodes a timestamp.

func (*Encoder) Initialize

func (e *Encoder) Initialize() error

Initialize initializes an Encoder.

type GlobalDecoder deprecated

type GlobalDecoder struct {
	// contains filtered or unexported fields
}

GlobalDecoder is a RTP timestamp decoder.

Deprecated: replaced by GlobalDecoder2.

func NewGlobalDecoder deprecated

func NewGlobalDecoder() *GlobalDecoder

NewGlobalDecoder allocates a GlobalDecoder.

Deprecated: replaced by NewGlobalDecoder2.

func (*GlobalDecoder) Decode

func (d *GlobalDecoder) Decode(
	track GlobalDecoderTrack,
	pkt *rtp.Packet,
) (time.Duration, bool)

Decode decodes a timestamp.

type GlobalDecoder2

type GlobalDecoder2 struct {
	// contains filtered or unexported fields
}

GlobalDecoder2 is a RTP timestamp decoder.

func NewGlobalDecoder2

func NewGlobalDecoder2() *GlobalDecoder2

NewGlobalDecoder2 allocates a GlobalDecoder.

func (*GlobalDecoder2) Decode

func (d *GlobalDecoder2) Decode(
	track GlobalDecoder2Track,
	pkt *rtp.Packet,
) (int64, bool)

Decode decodes a timestamp.

type GlobalDecoder2Track

type GlobalDecoder2Track interface {
	ClockRate() int
	PTSEqualsDTS(*rtp.Packet) bool
}

GlobalDecoder2Track is a track (RTSP format or WebRTC track) of GlobalDecoder2.

type GlobalDecoderTrack

type GlobalDecoderTrack interface {
	ClockRate() int
	PTSEqualsDTS(*rtp.Packet) bool
}

GlobalDecoderTrack is a track (RTSP format or WebRTC track) of a GlobalDecoder.

Jump to

Keyboard shortcuts

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