mediamtx/internal/core/data.go

16 lines
193 B
Go
Raw Normal View History

package core
import (
"time"
"github.com/pion/rtp"
)
type data struct {
2022-04-09 11:16:59 +00:00
trackID int
rtp *rtp.Packet
ptsEqualsDTS bool
h264NALUs [][]byte
h264PTS time.Duration
}