joy4/util.go
2013-03-11 11:00:20 +08:00

17 lines
123 B
Go

package av
const (
H264 = 1
AAC = 2
)
type Packet struct {
Codec int
Key bool
Pos float32
Data []byte
Idx int
}