1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
package mpeg
import (
"github.com/wader/fq/format"
"github.com/wader/fq/pkg/decode"
"github.com/wader/fq/pkg/interp"
)
var hevcAUNALGroup decode.Group
func init() {
interp.RegisterFormat(
format.HEVC_AU,
&decode.Format{
Description: "H.265/HEVC Access Unit",
DecodeFn: hevcAUDecode,
DefaultInArg: format.HEVC_AU_In{
LengthSize: 4,
},
RootArray: true,
RootName: "access_unit",
Dependencies: []decode.Dependency{
{Groups: []*decode.Group{format.HEVC_NALU}, Out: &hevcAUNALGroup},
},
})
}
// TODO: share/refactor with avcAUDecode?
func hevcAUDecode(d *decode.D) any {
var hi format.HEVC_AU_In
d.ArgAs(&hi)
if hi.LengthSize == 0 {
// TODO: is annexb the correct name?
annexBDecode(d, hevcAUNALGroup)
return nil
}
for d.NotEnd() {
d.FieldStruct("nalu", func(d *decode.D) {
l := int64(d.FieldU("length", int(hi.LengthSize)*8)) * 8
d.FieldFormatLen("nalu", l, &hevcAUNALGroup, nil)
})
}
return nil
}
|