vdk/format/mkv/stream.go

25 lines
263 B
Go
Raw Normal View History

2022-01-27 09:10:06 +08:00
package mkv
import (
"time"
"github.com/deepch/vdk/av"
)
type Stream struct {
av.CodecData
demuxer *Demuxer
pid uint16
streamId uint8
streamType uint8
idx int
iskeyframe bool
pts, dts time.Duration
data []byte
datalen int
}