mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 10:10:03 -08:00
13 lines
206 B
Go
13 lines
206 B
Go
package formatprocessor
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/pion/rtp"
|
|
)
|
|
|
|
// Unit is the elementary data unit routed across the server.
|
|
type Unit interface {
|
|
GetRTPPackets() []*rtp.Packet
|
|
GetNTP() time.Time
|
|
}
|