1
1
mirror of https://github.com/wader/fq.git synced 2024-11-23 18:56:52 +03:00
fq/format/mpeg/avc_annexb.go

25 lines
563 B
Go
Raw Normal View History

package mpeg
import (
"github.com/wader/fq/format"
"github.com/wader/fq/format/registry"
"github.com/wader/fq/pkg/decode"
)
var annexBAVCNALUFormat decode.Group
func init() {
registry.MustRegister(decode.Format{
Name: format.AVC_ANNEXB,
Description: "H.264/AVC Annex B",
DecodeFn: func(d *decode.D, in interface{}) interface{} {
return annexBDecode(d, in, annexBAVCNALUFormat)
},
RootArray: true,
RootName: "stream",
Dependencies: []decode.Dependency{
{Names: []string{format.AVC_NALU}, Group: &annexBAVCNALUFormat},
},
})
}