mediamtx/internal/formatprocessor/unit.go

14 lines
206 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 {
GetRTPPackets() []*rtp.Packet
GetNTP() time.Time
}