25 lines
263 B
Go
25 lines
263 B
Go
|
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
|
||
|
}
|