mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-14 02:34:52 +00:00
20 lines
357 B
Go
20 lines
357 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
|
||
|
|
||
|
// returns the PTS of the unit.
|
||
|
GetPTS() time.Duration
|
||
|
}
|