mediamtx/internal/formatprocessor/unit.go

17 lines
299 B
Go
Raw Normal View History

2023-03-10 11:44:59 +00:00
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.
2023-03-10 11:44:59 +00:00
GetRTPPackets() []*rtp.Packet
// returns the NTP timestamp of the unit.
2023-03-10 11:44:59 +00:00
GetNTP() time.Time
}