mediamtx/internal/formatprocessor/unit.go
2023-05-14 14:18:03 +02:00

17 lines
299 B
Go

package formatprocessor
import (
"time"
"github.com/pion/rtp"
)
// Unit is the elementary data unit routed across the server.
type Unit interface {
// returns RTP packets contained into the unit.
GetRTPPackets() []*rtp.Packet
// returns the NTP timestamp of the unit.
GetNTP() time.Time
}