mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-04 15:22:48 +08:00
14 lines
206 B
Go
14 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
|
|
}
|