1
1
mirror of https://github.com/wader/fq.git synced 2024-12-26 15:02:28 +03:00
fq/format/mpeg/hevc_annexb.go

25 lines
548 B
Go
Raw Normal View History

package mpeg
import (
"github.com/wader/fq/format"
"github.com/wader/fq/pkg/decode"
"github.com/wader/fq/pkg/interp"
)
var annexBHEVCNALUFormat decode.Group
func init() {
interp.RegisterFormat(decode.Format{
Name: format.HEVC_ANNEXB,
Description: "H.265/HEVC Annex B",
DecodeFn: func(d *decode.D, in any) any {
return annexBDecode(d, in, annexBHEVCNALUFormat)
},
RootArray: true,
RootName: "stream",
Dependencies: []decode.Dependency{
{Names: []string{format.HEVC_NALU}, Group: &annexBHEVCNALUFormat},
},
})
}