vdk/format/mkv/stream.go
kunmeng 0e65c9d1cc
Some checks failed
CodeQL / Analyze (cpp) (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
将包名改为 git.r-2.top/kunmeng/vdk
2025-01-24 14:45:45 +08:00

25 lines
265 B
Go

package mkv
import (
"time"
"git.r-2.top/kunmeng/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
}