mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-27 09:23:38 +00:00
14 lines
184 B
Go
14 lines
184 B
Go
package core
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/pion/rtp"
|
|
)
|
|
|
|
// data is the data unit routed across the server.
|
|
type data interface {
|
|
getRTPPackets() []*rtp.Packet
|
|
getNTP() time.Time
|
|
}
|