mirror of
https://github.com/wader/fq.git
synced 2024-11-23 09:56:07 +03:00
25 lines
563 B
Go
25 lines
563 B
Go
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},
|
|
},
|
|
})
|
|
}
|