vdk/format/ts/stream.go
2022-03-28 15:47:46 +03:00

28 lines
346 B
Go

package ts
import (
"time"
"github.com/deepch/vdk/av"
"github.com/deepch/vdk/format/ts/tsio"
)
type Stream struct {
av.CodecData
demuxer *Demuxer
muxer *Muxer
pid uint16
streamId uint8
streamType uint8
tsw *tsio.TSWriter
idx int
iskeyframe bool
pts, dts, pt time.Duration
data []byte
datalen int
}