mirror of
https://github.com/lkmio/lkm.git
synced 2026-04-23 00:27:06 +08:00
14 lines
261 B
Go
14 lines
261 B
Go
package stream
|
|
|
|
import "github.com/lkmio/avformat/utils"
|
|
|
|
type Track struct {
|
|
Stream utils.AVStream
|
|
Pts int64 // 最新的PTS
|
|
Dts int64 // 最新的DTS
|
|
}
|
|
|
|
func NewTrack(stream utils.AVStream, dts, pts int64) *Track {
|
|
return &Track{stream, dts, pts}
|
|
}
|