1
1
mirror of https://github.com/wader/fq.git synced 2024-11-28 11:42:50 +03:00
fq/format/vpx/vp9_cfm.go

45 lines
1.0 KiB
Go
Raw Normal View History

2020-06-08 03:29:51 +03:00
package vpx
// https://www.webmproject.org/docs/container/#vp9-codec-feature-metadata-codecprivate
import (
"github.com/wader/fq/format"
"github.com/wader/fq/format/registry"
"github.com/wader/fq/pkg/decode"
2020-06-08 03:29:51 +03:00
)
func init() {
registry.MustRegister(decode.Format{
2020-06-08 03:29:51 +03:00
Name: format.VP9_CFM,
Description: "VP9 Codec Feature Metadata",
DecodeFn: vp9CFMDecode,
RootArray: true,
2021-09-16 17:26:31 +03:00
RootName: "features",
2020-06-08 03:29:51 +03:00
})
}
func vp9CFMDecode(d *decode.D, in interface{}) interface{} {
2021-09-16 17:26:31 +03:00
for d.NotEnd() {
d.FieldStruct("feature", func(d *decode.D) {
id := d.FieldU8("id", vp9FeatureIDNames)
2021-09-16 17:26:31 +03:00
l := d.FieldU8("length")
d.LenFn(int64(l)*8, func(d *decode.D) {
2021-09-16 17:26:31 +03:00
switch id {
case vp9FeatureProfile:
d.FieldU8("profile")
case vp9FeatureLevel:
d.FieldU8("level", vpxLevelNames)
2021-09-16 17:26:31 +03:00
case vp9FeatureBitDepth:
d.FieldU8("bit_depth")
case vp9FeatureChromaSubsampling:
d.FieldU8("chroma_subsampling", vpxChromeSubsamplingNames)
2021-09-16 17:26:31 +03:00
default:
d.FieldRawLen("data", d.BitsLeft())
2021-09-16 17:26:31 +03:00
}
2020-06-08 03:29:51 +03:00
})
2021-09-16 17:26:31 +03:00
})
}
2020-06-08 03:29:51 +03:00
return nil
}