mirror of
https://github.com/wader/fq.git
synced 2024-11-23 09:56:07 +03:00
1246 lines
36 KiB
Go
1246 lines
36 KiB
Go
package mp4
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/wader/fq/format"
|
|
"github.com/wader/fq/pkg/decode"
|
|
)
|
|
|
|
var boxAliases = map[string]string{
|
|
"styp": "ftyp",
|
|
}
|
|
|
|
func decodeFieldLang(d *decode.D, name string) string {
|
|
return d.FieldStrFn(name, func() (string, string) {
|
|
return decodeLang(d), ""
|
|
})
|
|
}
|
|
|
|
// ISO 639-2/T language code 3 * 5bit packed uint + 1 zero bit
|
|
func decodeLang(d *decode.D) string {
|
|
d.U1()
|
|
return string([]byte{
|
|
byte(d.U5()) + 0x60,
|
|
byte(d.U5()) + 0x60,
|
|
byte(d.U5()) + 0x60},
|
|
)
|
|
}
|
|
|
|
var quicktimeEpoch = time.Date(1904, time.January, 4, 0, 0, 0, 0, time.UTC)
|
|
|
|
func decodeFieldTime(d *decode.D, name string) uint64 { //nolint:unparam
|
|
return d.FieldUFn(name, func() (uint64, decode.DisplayFormat, string) {
|
|
n, d := decodeTime(d)
|
|
return n, decode.NumberDecimal, d
|
|
})
|
|
}
|
|
|
|
// Quicktime time seconds in January 1, 1904 UTC
|
|
func decodeTime(d *decode.D) (uint64, string) {
|
|
n := d.U32()
|
|
return n, quicktimeEpoch.Add(time.Second * time.Duration(n)).Format(time.RFC3339)
|
|
}
|
|
|
|
func decodeFieldMatrix(d *decode.D, name string) {
|
|
d.FieldStructFn(name, func(d *decode.D) {
|
|
d.FieldFP32("a")
|
|
d.FieldFP32("b")
|
|
d.FieldFP("u", 32, 30)
|
|
d.FieldFP32("c")
|
|
d.FieldFP32("d")
|
|
d.FieldFP("v", 32, 30)
|
|
d.FieldFP32("x")
|
|
d.FieldFP32("y")
|
|
d.FieldFP("w", 32, 30)
|
|
})
|
|
}
|
|
|
|
func decodeBox(ctx *decodeContext, d *decode.D) {
|
|
typeFn := func() (string, string) {
|
|
typ := d.UTF8(4)
|
|
return typ, boxDescriptions[typ]
|
|
}
|
|
|
|
boxSize := d.U32()
|
|
typ := d.UTF8(4)
|
|
d.SeekRel(-8 * 8)
|
|
|
|
var dataSize uint64
|
|
|
|
switch boxSize {
|
|
case 0:
|
|
// reset of file
|
|
// TODO: FieldU32 with display?
|
|
d.FieldUFn("size", func() (uint64, decode.DisplayFormat, string) {
|
|
return d.U32(), decode.NumberDecimal, "Rest of file"
|
|
})
|
|
d.FieldStrFn("type", typeFn)
|
|
dataSize = uint64(d.Len()-d.Pos()) / 8
|
|
case 1:
|
|
// 64 bit length
|
|
d.FieldUFn("size", func() (uint64, decode.DisplayFormat, string) {
|
|
return d.U32(), decode.NumberDecimal, "Use 64 bit size"
|
|
})
|
|
d.FieldStrFn("type", typeFn)
|
|
// TODO: 64 bit size zero is rest of file also?
|
|
boxSize = d.FieldU64("size64")
|
|
dataSize = boxSize - 16
|
|
default:
|
|
d.FieldU32("size")
|
|
d.FieldStrFn("type", typeFn)
|
|
dataSize = boxSize - 8
|
|
}
|
|
|
|
// TODO: not sure about this
|
|
switch {
|
|
case typ == "\xa9too":
|
|
typ = "_apple_list"
|
|
case typ[0] == 0xa9:
|
|
typ = "_apple_entry"
|
|
}
|
|
|
|
if a, ok := boxAliases[typ]; ok {
|
|
typ = a
|
|
}
|
|
|
|
ctx.path = append(ctx.path, typ)
|
|
|
|
if decodeFn, ok := boxDecoders[typ]; ok {
|
|
d.DecodeLenFn(int64(dataSize*8), func(d *decode.D) {
|
|
decodeFn(ctx, d)
|
|
})
|
|
} else {
|
|
d.FieldBitBufLen("data", int64(dataSize*8))
|
|
}
|
|
|
|
ctx.path = ctx.path[0 : len(ctx.path)-1]
|
|
}
|
|
|
|
func decodeBoxes(ctx *decodeContext, d *decode.D) {
|
|
d.FieldStructArrayLoopFn("boxes", "box", func() bool { return d.BitsLeft() >= 8*8 }, func(d *decode.D) {
|
|
decodeBox(ctx, d)
|
|
})
|
|
|
|
if d.BitsLeft() > 0 {
|
|
// "Some sample descriptions terminate with four zero bytes that are not otherwise indicated."
|
|
if d.BitsLeft() >= 32 && d.PeekBits(32) == 0 {
|
|
d.FieldU32("zero_terminator")
|
|
}
|
|
if d.BitsLeft() > 0 {
|
|
d.FieldBitBufLen("padding", d.BitsLeft())
|
|
}
|
|
}
|
|
}
|
|
|
|
var boxDecoders map[string]func(ctx *decodeContext, d *decode.D)
|
|
|
|
func init() {
|
|
boxDecoders = map[string]func(ctx *decodeContext, d *decode.D){
|
|
"ftyp": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldUTF8("major_brand", 4)
|
|
d.FieldU32("minor_version")
|
|
numBrands := d.BitsLeft() / 8 / 4
|
|
var i int64
|
|
d.FieldArrayLoopFn("brands", func() bool { return i < numBrands }, func(d *decode.D) {
|
|
d.FieldStrFn("brand", func() (string, string) {
|
|
s := strings.TrimSpace(d.UTF8(4))
|
|
return s, brandDescriptions[s]
|
|
})
|
|
i++
|
|
})
|
|
},
|
|
"mvhd": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldUTF8("flags", 3)
|
|
_ = decodeFieldTime(d, "creation_time")
|
|
_ = decodeFieldTime(d, "modification_time")
|
|
d.FieldU32("time_scale")
|
|
d.FieldU32("duration")
|
|
d.FieldFP32("preferred_rate")
|
|
d.FieldFP16("preferred_volume")
|
|
d.FieldUTF8("reserved", 10)
|
|
decodeFieldMatrix(d, "matrix_structure")
|
|
d.FieldU32("preview_time")
|
|
d.FieldU32("preview_duration")
|
|
d.FieldU32("poster_time")
|
|
d.FieldU32("selection_time")
|
|
d.FieldU32("selection_duration")
|
|
d.FieldU32("current_time")
|
|
d.FieldU32("next_track_id")
|
|
},
|
|
"trak": decodeBoxes,
|
|
"edts": decodeBoxes,
|
|
"elst": func(_ *decodeContext, d *decode.D) {
|
|
version := d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
entryCount := d.FieldU32("entry_count")
|
|
var i uint64
|
|
d.FieldStructArrayLoopFn("entries", "entry", func() bool { return i < entryCount }, func(d *decode.D) {
|
|
d.FieldS32("segment_duration")
|
|
d.FieldSFn("media_time", func() (int64, decode.DisplayFormat, string) {
|
|
var t int64
|
|
if version == 0 {
|
|
t = d.S32()
|
|
} else {
|
|
t = d.S64()
|
|
}
|
|
if t == -1 {
|
|
return t, decode.NumberDecimal, "empty"
|
|
}
|
|
return t, decode.NumberDecimal, ""
|
|
})
|
|
d.FieldFP32("media_rate")
|
|
i++
|
|
})
|
|
},
|
|
"tref": decodeBoxes,
|
|
"tkhd": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
d.FieldU32("creation_time")
|
|
d.FieldU32("modification_time")
|
|
trackID := uint32(d.FieldU32("track_id"))
|
|
d.FieldU32("reserved1")
|
|
d.FieldU32("duration")
|
|
d.FieldBitBufLen("reserved2", 8*8)
|
|
d.FieldU16("layer")
|
|
// TODO: values
|
|
d.FieldU16("alternate_group")
|
|
d.FieldFP16("volume")
|
|
d.FieldU16("reserved3")
|
|
decodeFieldMatrix(d, "matrix_structure")
|
|
d.FieldFP32("track_width")
|
|
d.FieldFP32("track_height")
|
|
|
|
// TODO: dup track id?
|
|
if _, ok := ctx.tracks[trackID]; !ok {
|
|
t := &track{id: trackID}
|
|
ctx.tracks[trackID] = t
|
|
ctx.currentTrack = t
|
|
}
|
|
},
|
|
"mdia": decodeBoxes,
|
|
"mdhd": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
// TODO: timestamps
|
|
d.FieldU32("creation_time")
|
|
d.FieldU32("modification_time")
|
|
d.FieldU32("time_scale")
|
|
d.FieldU32("duration")
|
|
decodeFieldLang(d, "language")
|
|
d.FieldU16("quality")
|
|
},
|
|
|
|
"hdlr": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
d.FieldUTF8("component_type", 4)
|
|
subTypeNames := map[string]string{
|
|
"alis": "Alias Data",
|
|
"camm": "Camera Metadata",
|
|
"crsm": "Clock Reference",
|
|
"data": "Data",
|
|
"hint": "Hint Track",
|
|
"ipsm": "IPMP",
|
|
"m7sm": "MPEG-7 Stream",
|
|
"mdir": "Metadata",
|
|
"mdta": "Metadata Tags",
|
|
"meta": "NRT Metadata",
|
|
"mjsm": "MPEG-J",
|
|
"nrtm": "Non-Real Time Metadata",
|
|
"ocsm": "Object Content",
|
|
"odsm": "Object Descriptor",
|
|
"pict": "Picture",
|
|
"priv": "Private",
|
|
"psmd": "Panasonic Static Metadata",
|
|
"sbtl": "Subtitle",
|
|
"sdsm": "Scene Description",
|
|
"soun": "Audio Track",
|
|
"subp": "Subpicture",
|
|
"text": "Text",
|
|
"tmcd": "Time Code",
|
|
"url": "URL",
|
|
"vide": "Video Track",
|
|
}
|
|
subType := d.FieldStrFn("component_subtype", func() (string, string) {
|
|
s := strings.TrimSpace(d.UTF8(4))
|
|
return s, subTypeNames[s]
|
|
})
|
|
d.FieldUTF8("component_manufacturer", 4)
|
|
d.FieldU32("component_flags")
|
|
d.FieldU32("component_flags_mask")
|
|
d.FieldUTF8("component_name", int(d.BitsLeft()/8))
|
|
|
|
if ctx.currentTrack != nil {
|
|
// component_type seems to be all zero sometimes so can't look for "mhlr"
|
|
switch subType {
|
|
case "vide", "soun":
|
|
ctx.currentTrack.subType = subType
|
|
}
|
|
}
|
|
},
|
|
|
|
"minf": decodeBoxes,
|
|
"dinf": decodeBoxes,
|
|
"dref": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
entryCount := d.FieldU32("entry_count")
|
|
var i uint64
|
|
d.FieldStructArrayLoopFn("boxes", "box", func() bool { return i < entryCount }, func(d *decode.D) {
|
|
size := d.FieldU32("size")
|
|
d.FieldUTF8("type", 4)
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
dataSize := size - 12
|
|
d.FieldBitBufLen("data", int64(dataSize*8))
|
|
i++
|
|
})
|
|
},
|
|
"stbl": decodeBoxes,
|
|
"stsd": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
entryCount := d.FieldU32("entry_count")
|
|
var i uint64
|
|
// note called "boxes" here instead of "sample_descriptions" and data format is named "type".
|
|
// this is to make it easier to threat them as normal boxes
|
|
d.FieldArrayLoopFn("boxes", func() bool { return i < entryCount }, func(d *decode.D) {
|
|
d.FieldStructFn("box", func(d *decode.D) {
|
|
size := d.FieldU32("size")
|
|
dataFormat := d.FieldUTF8("type", 4)
|
|
subType := ""
|
|
if ctx.currentTrack != nil {
|
|
ctx.currentTrack.sampleDescriptions = append(ctx.currentTrack.sampleDescriptions, sampleDescription{
|
|
dataFormat: dataFormat,
|
|
})
|
|
subType = ctx.currentTrack.subType
|
|
}
|
|
|
|
d.DecodeLenFn(int64(size-8)*8, func(d *decode.D) {
|
|
d.FieldBytesLen("reserved", 6)
|
|
d.FieldU16("data_reference_index")
|
|
|
|
switch subType {
|
|
case "soun", "vide":
|
|
|
|
version := d.FieldU16("version")
|
|
d.FieldU16("revision_level")
|
|
d.FieldU32("max_packet_size") // TODO: vendor?
|
|
|
|
// "Some sample descriptions terminate with four zero bytes that are not otherwise indicated."
|
|
// uses decodeBoxes
|
|
|
|
// Timecode sample
|
|
// TODO: tc64
|
|
// d.DecodeRangeFn(firstBit, nBits, func(d *decode.D) {
|
|
// d.FieldStructFn("sample", func(d *decode.D) {
|
|
// d.FieldU32("reserved0")
|
|
// d.FieldBitBufLen("data", d.BitsLeft())
|
|
// // d.FieldU32("flags")
|
|
// // d.FieldS32("timescale")
|
|
// // d.FieldS32("frame_duration")
|
|
// // d.FieldS32("num_frames")
|
|
// // d.FieldU8("reserved1")
|
|
// })
|
|
// })
|
|
|
|
switch subType {
|
|
case "soun":
|
|
// AudioSampleEntry
|
|
// https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html#//apple_ref/doc/uid/TP40000939-CH205-SW1
|
|
switch version {
|
|
case 0:
|
|
d.FieldU16("num_audio_channels")
|
|
d.FieldU16("sample_size")
|
|
d.FieldU16("compression_id")
|
|
d.FieldU16("packet_size")
|
|
d.FieldFP32("sample_rate")
|
|
if d.BitsLeft() > 0 {
|
|
decodeBoxes(ctx, d)
|
|
}
|
|
case 1:
|
|
d.FieldU16("num_audio_channels")
|
|
d.FieldU16("sample_size")
|
|
d.FieldU16("compression_id")
|
|
d.FieldU16("packet_size")
|
|
d.FieldFP32("sample_rate")
|
|
d.FieldU32("samples_per_packet")
|
|
d.FieldU32("bytes_per_packet")
|
|
d.FieldU32("bytes_per_frame")
|
|
d.FieldU32("bytes_per_sample")
|
|
if d.BitsLeft() > 0 {
|
|
decodeBoxes(ctx, d)
|
|
}
|
|
case 2:
|
|
d.FieldU16("always_3")
|
|
d.FieldU16("always_16")
|
|
d.FieldU16("always_minus_2")
|
|
d.FieldU32("always_0")
|
|
d.FieldU32("always_65536")
|
|
d.FieldU32("size_of_struct_only")
|
|
d.FieldF64("audio_sample_rate")
|
|
d.FieldU32("num_audio_channels")
|
|
d.FieldU32("always_7f000000")
|
|
d.FieldU32("const_bits_per_channel")
|
|
d.FieldU32("format_specific_flags")
|
|
d.FieldU32("const_bytes_per_audio_packet")
|
|
d.FieldU32("const_lpcm_frames_per_audio_packet")
|
|
if d.BitsLeft() > 0 {
|
|
decodeBoxes(ctx, d)
|
|
}
|
|
default:
|
|
d.FieldBitBufLen("data", d.BitsLeft())
|
|
}
|
|
case "vide":
|
|
// VideoSampleEntry
|
|
// TODO: version 0 and 1 same?
|
|
switch version {
|
|
case 0, 1:
|
|
d.FieldU32("temporal_quality")
|
|
d.FieldU32("spatial_quality")
|
|
d.FieldU16("width")
|
|
d.FieldU16("height")
|
|
d.FieldFP32("horizontal_resolution")
|
|
d.FieldFP32("vertical_resolution")
|
|
d.FieldU32("data_size")
|
|
d.FieldU16("frame_count")
|
|
d.FieldUTF8ShortString("compressor_name", 32)
|
|
d.FieldU16("depth")
|
|
d.FieldS16("color_table_id")
|
|
// TODO: if 0 decode ctab
|
|
if d.BitsLeft() > 0 {
|
|
decodeBoxes(ctx, d)
|
|
}
|
|
default:
|
|
d.FieldBitBufLen("data", d.BitsLeft())
|
|
}
|
|
// case "hint": TODO: Hint entry
|
|
default:
|
|
d.FieldBitBufLen("data", d.BitsLeft())
|
|
}
|
|
default:
|
|
d.FieldBitBufLen("data", d.BitsLeft())
|
|
}
|
|
|
|
})
|
|
})
|
|
i++
|
|
})
|
|
},
|
|
"avcC": func(ctx *decodeContext, d *decode.D) {
|
|
_, v := d.FieldFormat("value", mpegAVCDCRFormat)
|
|
avcDcrOut, ok := v.(format.AvcDcrOut)
|
|
if !ok {
|
|
d.Invalid(fmt.Sprintf("expected AvcDcrOut got %#+v", v))
|
|
}
|
|
if ctx.currentTrack != nil {
|
|
ctx.currentTrack.decodeOpts = append(ctx.currentTrack.decodeOpts,
|
|
decode.FormatOptions{InArg: format.AvcIn{LengthSize: avcDcrOut.LengthSize}}) //nolint:gosimple
|
|
}
|
|
},
|
|
"hvcC": func(ctx *decodeContext, d *decode.D) {
|
|
_, v := d.FieldFormat("value", mpegHEVCDCRFrameFormat)
|
|
hevcDcrOut, ok := v.(format.HevcDcrOut)
|
|
if !ok {
|
|
d.Invalid(fmt.Sprintf("expected HevcDcrOut got %#+v", v))
|
|
}
|
|
if ctx.currentTrack != nil {
|
|
ctx.currentTrack.decodeOpts = append(ctx.currentTrack.decodeOpts,
|
|
decode.FormatOptions{InArg: format.HevcIn{LengthSize: hevcDcrOut.LengthSize}}) //nolint:gosimple
|
|
}
|
|
},
|
|
"dfLa": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
d.FieldArrayFn("metadatablocks", func(d *decode.D) {
|
|
for {
|
|
_, v := d.FieldFormat("metadatablock", flacMetadatablockFormat)
|
|
flacMetadatablockOut, ok := v.(format.FlacMetadatablockOut)
|
|
if !ok {
|
|
d.Invalid(fmt.Sprintf("expected FlacMetadatablockOut got %#+v", v))
|
|
}
|
|
if flacMetadatablockOut.HasStreamInfo {
|
|
if ctx.currentTrack != nil {
|
|
ctx.currentTrack.decodeOpts = append(ctx.currentTrack.decodeOpts,
|
|
decode.FormatOptions{InArg: format.FlacFrameIn{StreamInfo: flacMetadatablockOut.StreamInfo}})
|
|
}
|
|
}
|
|
if flacMetadatablockOut.IsLastBlock {
|
|
return
|
|
}
|
|
}
|
|
})
|
|
},
|
|
"dOps": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldFormat("value", opusPacketFrameFormat)
|
|
},
|
|
"av1C": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldFormat("value", av1CCRFormat)
|
|
},
|
|
"vpcC": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldFormat("value", vpxCCRFormat)
|
|
},
|
|
"esds": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU32("version")
|
|
|
|
// TODO: some other way to know how to decode?
|
|
// TODO: why not always? was there a reason?
|
|
// dataFormat := ""
|
|
// if ctx.currentTrack != nil && len(ctx.currentTrack.sampleDescriptions) > 0 {
|
|
// dataFormat = ctx.currentTrack.sampleDescriptions[0].dataFormat
|
|
// }
|
|
|
|
// switch dataFormat {
|
|
// case "mp4a", "mp4v":
|
|
_, v := d.FieldFormat("es_descriptor", mpegESFormat)
|
|
mpegEsOut, ok := v.(format.MpegEsOut)
|
|
if !ok {
|
|
d.Invalid(fmt.Sprintf("expected mpegEsOut got %#+v", v))
|
|
}
|
|
|
|
if ctx.currentTrack != nil && len(mpegEsOut.DecoderConfigs) > 0 {
|
|
dc := mpegEsOut.DecoderConfigs[0]
|
|
ctx.currentTrack.objectType = dc.ObjectType
|
|
ctx.currentTrack.decodeOpts = append(ctx.currentTrack.decodeOpts,
|
|
decode.FormatOptions{InArg: format.AACFrameIn{ObjectType: dc.ASCObjectType}})
|
|
}
|
|
|
|
// default:
|
|
// d.FieldBitBufLen("data", d.BitsLeft())
|
|
// }
|
|
|
|
},
|
|
"stts": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
numEntries := d.FieldU32("entry_count")
|
|
var i uint64
|
|
d.FieldStructArrayLoopFn("entries", "entry", func() bool { return i < numEntries }, func(d *decode.D) {
|
|
d.FieldU32("count")
|
|
d.FieldU32("delta")
|
|
i++
|
|
})
|
|
},
|
|
"stsc": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
entryCount := d.FieldU32("entry_count")
|
|
var i uint64
|
|
d.FieldStructArrayLoopFn("entries", "entry", func() bool { return i < entryCount }, func(d *decode.D) {
|
|
firstChunk := uint32(d.FieldU32("first_chunk"))
|
|
samplesPerChunk := uint32(d.FieldU32("samples_per_chunk"))
|
|
d.FieldU32("sample_description_id")
|
|
|
|
if ctx.currentTrack != nil {
|
|
ctx.currentTrack.stsc = append(ctx.currentTrack.stsc, stsc{
|
|
firstChunk: firstChunk,
|
|
samplesPerChunk: samplesPerChunk,
|
|
})
|
|
}
|
|
i++
|
|
})
|
|
},
|
|
"stsz": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
// TODO: bytes_per_sample from audio stsd?
|
|
sampleSize := d.FieldU32("sample_size")
|
|
entryCount := d.FieldU32("entry_count")
|
|
if sampleSize == 0 {
|
|
var i uint64
|
|
d.FieldArrayLoopFn("entries", func() bool { return i < entryCount }, func(d *decode.D) {
|
|
size := uint32(d.FieldU32("size"))
|
|
if ctx.currentTrack != nil {
|
|
ctx.currentTrack.stsz = append(ctx.currentTrack.stsz, size)
|
|
}
|
|
i++
|
|
})
|
|
} else {
|
|
if ctx.currentTrack != nil {
|
|
for i := uint64(0); i < entryCount; i++ {
|
|
ctx.currentTrack.stsz = append(ctx.currentTrack.stsz, uint32(sampleSize))
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"stco": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
entryCount := d.FieldU32("entry_count")
|
|
var i uint64
|
|
d.FieldArrayLoopFn("entries", func() bool { return i < entryCount }, func(d *decode.D) {
|
|
chunkOffset := d.FieldU32("chunk_offset")
|
|
if ctx.currentTrack != nil {
|
|
ctx.currentTrack.stco = append(ctx.currentTrack.stco, chunkOffset)
|
|
}
|
|
i++
|
|
})
|
|
},
|
|
"stss": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
entryCount := d.FieldU32("entry_count")
|
|
d.FieldArrayFn("entries", func(d *decode.D) {
|
|
for i := uint64(0); i < entryCount; i++ {
|
|
d.FieldU32("sample_number")
|
|
}
|
|
})
|
|
},
|
|
"sdtp": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
// TODO: should be count from stsz
|
|
// TODO: can we know size here or do we need to defer decoding somehow?
|
|
d.FieldArrayFn("entries", func(d *decode.D) {
|
|
for d.NotEnd() {
|
|
d.FieldU8("entry")
|
|
}
|
|
})
|
|
},
|
|
"ctts": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
entryCount := d.FieldU32("entry_count")
|
|
var i uint64
|
|
d.FieldStructArrayLoopFn("entries", "entry", func() bool { return i < entryCount }, func(d *decode.D) {
|
|
d.FieldU32("sample_count")
|
|
d.FieldU32("sample_offset")
|
|
i++
|
|
})
|
|
},
|
|
// TODO: refactor: merge with stco?
|
|
"co64": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
// TODO: values
|
|
d.FieldU24("flags")
|
|
entryCount := d.FieldU32("entry_count")
|
|
var i uint64
|
|
d.FieldArrayLoopFn("entries", func() bool { return i < entryCount }, func(d *decode.D) {
|
|
offset := d.FieldU64("offset")
|
|
if ctx.currentTrack != nil {
|
|
ctx.currentTrack.stco = append(ctx.currentTrack.stco, offset)
|
|
}
|
|
i++
|
|
})
|
|
},
|
|
"sidx": func(_ *decodeContext, d *decode.D) {
|
|
version := d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldU32("reference_id")
|
|
d.FieldU32("timescale")
|
|
if version == 0 {
|
|
d.FieldU32("pts")
|
|
d.FieldU32("offset")
|
|
} else {
|
|
d.FieldU64("pts")
|
|
d.FieldU64("offset")
|
|
}
|
|
d.FieldU16("reserved")
|
|
numEntries := d.FieldU16("entry_count")
|
|
var i uint64
|
|
d.FieldStructArrayLoopFn("entries", "entry", func() bool { return i < numEntries }, func(d *decode.D) {
|
|
d.FieldU1("reference_type")
|
|
d.FieldU31("size")
|
|
d.FieldU32("duration")
|
|
d.FieldU1("starts_with_sap")
|
|
d.FieldU3("sap_type")
|
|
d.FieldU28("sap_delta_time")
|
|
i++
|
|
})
|
|
},
|
|
"udta": decodeBoxes,
|
|
"meta": func(ctx *decodeContext, d *decode.D) {
|
|
// TODO: meta box sometimes has a 4 byte unknown field? (flag/version?)
|
|
maybeFlags := d.PeekBits(32)
|
|
if maybeFlags == 0 {
|
|
// TODO: rename?
|
|
d.FieldU32("maybe_flags")
|
|
}
|
|
decodeBoxes(ctx, d)
|
|
},
|
|
"ilst": decodeBoxes,
|
|
"_apple_list": decodeBoxes,
|
|
"_apple_entry": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldUTF8("data", int(d.BitsLeft()/8))
|
|
},
|
|
"data": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldU32("reserved")
|
|
if isParent(ctx, "covr") {
|
|
dv, _, _ := d.FieldTryFormatLen("data", d.BitsLeft(), imageFormat)
|
|
if dv == nil {
|
|
d.FieldBitBufLen("data", d.BitsLeft())
|
|
}
|
|
} else {
|
|
d.FieldUTF8("data", int(d.BitsLeft()/8))
|
|
}
|
|
},
|
|
"moov": decodeBoxes,
|
|
"moof": func(ctx *decodeContext, d *decode.D) {
|
|
ctx.currentMoofOffset = (d.Pos() / 8) - 8
|
|
decodeBoxes(ctx, d)
|
|
},
|
|
// Track Fragment
|
|
"traf": decodeBoxes,
|
|
// Movie Fragment Header
|
|
"mfhd": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldU32("sequence_number")
|
|
},
|
|
// Track Fragment Header
|
|
"tfhd": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
baseDataOffsetPresent := false
|
|
sampleDescriptionIndexPresent := false
|
|
defaultSampleDurationPresent := false
|
|
defaultSampleSizePresent := false
|
|
defaultSampleFlagsPresent := false
|
|
d.FieldStructFn("flags", func(d *decode.D) {
|
|
d.FieldU7("unused0")
|
|
d.FieldBool("duration_is_empty")
|
|
d.FieldU10("unused1")
|
|
defaultSampleFlagsPresent = d.FieldBool("default_sample_flags_present")
|
|
defaultSampleSizePresent = d.FieldBool("default_sample_size_present")
|
|
defaultSampleDurationPresent = d.FieldBool("default_sample_duration_present")
|
|
d.FieldU1("unused2")
|
|
sampleDescriptionIndexPresent = d.FieldBool("sample_description_index_present")
|
|
baseDataOffsetPresent = d.FieldBool("base_data_offset_present")
|
|
|
|
})
|
|
trackID := uint32(d.FieldU32("track_id"))
|
|
m := &moof{}
|
|
ctx.currentTrack = ctx.tracks[trackID]
|
|
if ctx.currentTrack != nil {
|
|
ctx.currentTrack.moofs = append(ctx.currentTrack.moofs, m)
|
|
ctx.currentTrack.currentMoof = m
|
|
}
|
|
|
|
if baseDataOffsetPresent {
|
|
d.FieldU64("base_data_offset")
|
|
}
|
|
if sampleDescriptionIndexPresent {
|
|
m.defaultSampleDescriptionIndex = uint32(d.FieldU32("sample_description_index"))
|
|
}
|
|
if defaultSampleDurationPresent {
|
|
d.FieldU32("default_sample_duration")
|
|
}
|
|
if defaultSampleSizePresent {
|
|
m.defaultSampleSize = uint32(d.FieldU32("default_sample_size"))
|
|
}
|
|
if defaultSampleFlagsPresent {
|
|
d.FieldU32("default_sample_flags")
|
|
}
|
|
},
|
|
// Track Fragment Run
|
|
"trun": func(ctx *decodeContext, d *decode.D) {
|
|
m := &moof{}
|
|
if ctx.currentTrack != nil && ctx.currentTrack.currentMoof != nil {
|
|
m = ctx.currentTrack.currentMoof
|
|
}
|
|
m.offset = ctx.currentMoofOffset
|
|
|
|
d.FieldU8("version")
|
|
sampleCompositionTimeOffsetsPresent := false
|
|
sampleFlagsPresent := false
|
|
sampleSizePresent := false
|
|
sampleDurationPresent := false
|
|
firstSampleFlagsPresent := false
|
|
dataOffsetPresent := false
|
|
d.FieldStructFn("flags", func(d *decode.D) {
|
|
d.FieldU12("unused0")
|
|
sampleCompositionTimeOffsetsPresent = d.FieldBool("sample_composition_time_sffsets_present")
|
|
sampleFlagsPresent = d.FieldBool("sample_flags_present")
|
|
sampleSizePresent = d.FieldBool("sample_size_present")
|
|
sampleDurationPresent = d.FieldBool("sample_duration_present")
|
|
d.FieldU5("unused1")
|
|
firstSampleFlagsPresent = d.FieldBool("first_sample_flags_present")
|
|
d.FieldU1("unused2")
|
|
dataOffsetPresent = d.FieldBool("data_offset_present")
|
|
})
|
|
sampleCount := d.FieldU32("sample_count")
|
|
if dataOffsetPresent {
|
|
m.dataOffset = uint32(d.FieldS32("data_offset"))
|
|
}
|
|
if firstSampleFlagsPresent {
|
|
d.FieldU32("first_sample_flags")
|
|
}
|
|
|
|
d.FieldArrayFn("samples", func(d *decode.D) {
|
|
for i := uint64(0); i < sampleCount; i++ {
|
|
sampleSize := m.defaultSampleSize
|
|
d.FieldStructFn("sample", func(d *decode.D) {
|
|
if sampleDurationPresent {
|
|
d.FieldU32("sample_duration")
|
|
}
|
|
if sampleSizePresent {
|
|
sampleSize = uint32(d.FieldU32("sample_size"))
|
|
}
|
|
if sampleFlagsPresent {
|
|
d.FieldU32("sample_flags")
|
|
}
|
|
if sampleCompositionTimeOffsetsPresent {
|
|
d.FieldU32("sample_composition_time_offset")
|
|
}
|
|
})
|
|
|
|
m.samplesSizes = append(m.samplesSizes, sampleSize)
|
|
}
|
|
})
|
|
},
|
|
"tfdt": func(_ *decodeContext, d *decode.D) {
|
|
version := d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
if version == 1 {
|
|
d.FieldU64("start_time")
|
|
} else {
|
|
d.FieldU32("start_time")
|
|
}
|
|
},
|
|
"mvex": decodeBoxes,
|
|
"trex": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldU32("track_id")
|
|
d.FieldU32("default_sample_description_index")
|
|
d.FieldU32("default_sample_duration")
|
|
d.FieldU32("default_sample_size")
|
|
d.FieldU4("reserved0")
|
|
d.FieldU2("is_leading")
|
|
d.FieldU2("sample_depends_on")
|
|
d.FieldU2("sample_is_depended_on")
|
|
d.FieldU2("sample_has_redundancy")
|
|
d.FieldU3("sample_padding_value")
|
|
d.FieldU1("sample_is_non_sync_sample")
|
|
d.FieldU16("sample_degradation_priority")
|
|
},
|
|
"mfra": decodeBoxes,
|
|
"tfra": func(_ *decodeContext, d *decode.D) {
|
|
version := d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldU32("track_id")
|
|
d.FieldU26("reserved")
|
|
lengthSizeOfTrafNum := d.FieldU2("length_size_of_traf_num")
|
|
sampleLengthSizeOfTrunNum := d.FieldU2("sample_length_size_of_trun_num")
|
|
lengthSizeOfSampleNum := d.FieldU2("length_size_of_sample_num")
|
|
entryCount := d.FieldU32("entry_count")
|
|
d.FieldArrayFn("entries", func(d *decode.D) {
|
|
for i := uint64(0); i < entryCount; i++ {
|
|
d.FieldStructFn("entry", func(d *decode.D) {
|
|
if version == 1 {
|
|
d.FieldU64("time")
|
|
d.FieldU64("moof_offset")
|
|
} else {
|
|
d.FieldU32("time")
|
|
d.FieldU32("moof_offset")
|
|
}
|
|
d.FieldU("traf_number", int(lengthSizeOfTrafNum+1)*8)
|
|
d.FieldU("trun_number", int(sampleLengthSizeOfTrunNum+1)*8)
|
|
d.FieldU("sample_number", int(lengthSizeOfSampleNum+1)*8)
|
|
})
|
|
}
|
|
})
|
|
},
|
|
"mfro": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldU32("mfra_size")
|
|
},
|
|
// TODO: item location
|
|
// HEIC image
|
|
"iloc": func(_ *decodeContext, d *decode.D) {
|
|
version := d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
|
|
offsetSize := d.FieldU4("offset_size")
|
|
lengthSize := d.FieldU4("length_size")
|
|
baseOffsetSize := d.FieldU4("base_offset_size")
|
|
var indexSize uint64
|
|
switch version {
|
|
case 1, 2:
|
|
indexSize = d.FieldU4("index_size")
|
|
default:
|
|
d.FieldU4("reserved")
|
|
}
|
|
var itemCount uint64
|
|
if version < 2 {
|
|
itemCount = d.FieldU16("item_count")
|
|
} else {
|
|
itemCount = d.FieldU32("item_count")
|
|
}
|
|
d.FieldArrayFn("items", func(d *decode.D) {
|
|
for i := uint64(0); i < itemCount; i++ {
|
|
d.FieldStructFn("item", func(d *decode.D) {
|
|
switch version {
|
|
case 0, 1:
|
|
d.FieldU16("id")
|
|
case 2:
|
|
d.FieldU32("id")
|
|
}
|
|
switch version {
|
|
case 1, 2:
|
|
d.FieldU12("reserved")
|
|
d.FieldU4("construction_method")
|
|
}
|
|
d.FieldU16("data_reference_index")
|
|
d.FieldU("base_offset", int(baseOffsetSize)*8)
|
|
extentCount := d.FieldU16("extent_count")
|
|
d.FieldArrayFn("extends", func(d *decode.D) {
|
|
for i := uint64(0); i < extentCount; i++ {
|
|
d.FieldStructFn("extent", func(d *decode.D) {
|
|
if (version == 1 || version == 2) && indexSize > 0 {
|
|
d.FieldU("index", int(offsetSize)*8)
|
|
}
|
|
d.FieldU("offset", int(offsetSize)*8)
|
|
d.FieldU("length", int(lengthSize)*8)
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
})
|
|
},
|
|
"infe": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldU16("id")
|
|
d.FieldU16("protection_index")
|
|
d.FieldStrNullTerminated("item_name")
|
|
// TODO: really optional? seems so
|
|
if d.NotEnd() {
|
|
d.FieldStrNullTerminated("content_type")
|
|
}
|
|
if d.NotEnd() {
|
|
d.FieldStrNullTerminated("content_encoding")
|
|
}
|
|
},
|
|
"iinf": func(ctx *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
_ = d.FieldU16("entry_count")
|
|
decodeBoxes(ctx, d)
|
|
},
|
|
"iprp": decodeBoxes,
|
|
"ipco": decodeBoxes,
|
|
"ID32": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldU1("pad")
|
|
// ISO-639-2/T as 3*5 bit intgers - 0x60
|
|
d.FieldStrFn("language", func() (string, string) {
|
|
s := ""
|
|
for i := 0; i < 3; i++ {
|
|
s += fmt.Sprintf("%c", int(d.U5())+0x60)
|
|
}
|
|
return s, ""
|
|
})
|
|
d.FieldFormat("data", id3v2Format)
|
|
},
|
|
"mehd": func(_ *decodeContext, d *decode.D) {
|
|
flags := d.FieldU24("flags")
|
|
if flags&0b1 != 0 {
|
|
d.FieldU64("fragment_duration")
|
|
} else {
|
|
d.FieldU32("fragment_duration")
|
|
}
|
|
},
|
|
"pssh": func(_ *decodeContext, d *decode.D) {
|
|
var (
|
|
systemIDCommon = [16]byte{0x10, 0x77, 0xef, 0xec, 0xc0, 0xb2, 0x4d, 0x02, 0xac, 0xe3, 0x3c, 0x1e, 0x52, 0xe2, 0xfb, 0x4b}
|
|
systemIDWidevine = [16]byte{0xed, 0xef, 0x8b, 0xa9, 0x79, 0xd6, 0x4a, 0xce, 0xa3, 0xc8, 0x27, 0xdc, 0xd5, 0x1d, 0x21, 0xed}
|
|
systemIDPlayReady = [16]byte{0x9a, 0x04, 0xf0, 0x79, 0x98, 0x40, 0x42, 0x86, 0xab, 0x92, 0xe6, 0x5b, 0xe0, 0x88, 0x5f, 0x95}
|
|
)
|
|
systemIDNames := map[[16]byte]string{
|
|
systemIDCommon: "Common",
|
|
systemIDWidevine: "Widevine",
|
|
systemIDPlayReady: "PlayReady",
|
|
}
|
|
|
|
version := d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
systemID, _ := d.FieldStringUUIDMapFn("system_id", systemIDNames, "Unknown", func() []byte { return d.BytesLen(16) })
|
|
switch version {
|
|
case 0:
|
|
case 1:
|
|
kidCount := d.FieldU32("kid_count")
|
|
d.FieldArrayFn("kids", func(d *decode.D) {
|
|
for i := uint64(0); i < kidCount; i++ {
|
|
d.FieldBitBufLen("kid", 16*8)
|
|
}
|
|
})
|
|
}
|
|
dataLen := d.FieldU32("data_size")
|
|
|
|
switch {
|
|
case bytes.Equal(systemID, systemIDWidevine[:]):
|
|
d.FieldFormatLen("data", int64(dataLen)*8, protoBufWidevineFormat)
|
|
case systemID == nil:
|
|
fallthrough
|
|
default:
|
|
d.FieldBitBufLen("data", int64(dataLen)*8)
|
|
}
|
|
},
|
|
"sinf": decodeBoxes,
|
|
"frma": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldUTF8("format", 4)
|
|
},
|
|
"schm": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
d.FieldUTF8("encryption_type", 4)
|
|
d.FieldU16("encryption_version")
|
|
if d.BitsLeft() > 0 {
|
|
d.FieldUTF8("uri", int(d.BitsLeft())/8)
|
|
}
|
|
},
|
|
"schi": decodeBoxes,
|
|
"btrt": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU32("decoding_buffer_size")
|
|
d.FieldU32("max_bitrate")
|
|
d.FieldU32("avg_bitrate")
|
|
},
|
|
"pasp": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU32("h_spacing")
|
|
d.FieldU32("v_spacing")
|
|
},
|
|
"uuid": func(_ *decodeContext, d *decode.D) {
|
|
var uuidNames = map[[16]byte]string{
|
|
{0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd, 0xba, 0x2f, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66}: "isml_manifest",
|
|
{0xbe, 0x7a, 0xcf, 0xcb, 0x97, 0xa9, 0x42, 0xe8, 0x9c, 0x71, 0x99, 0x94, 0x91, 0xe3, 0xaf, 0xac}: "xmp",
|
|
{0xff, 0xcc, 0x82, 0x63, 0xf8, 0x55, 0x4a, 0x93, 0x88, 0x14, 0x58, 0x7a, 0x02, 0x52, 0x1f, 0xdd}: "spherical",
|
|
{0x55, 0x53, 0x4d, 0x54, 0x21, 0xd2, 0x4f, 0xce, 0xbb, 0x88, 0x69, 0x5c, 0xfa, 0xc9, 0xc7, 0x40}: "psp_usmt",
|
|
{0x6d, 0x1d, 0x9b, 0x05, 0x42, 0xd5, 0x44, 0xe6, 0x80, 0xe2, 0x14, 0x1d, 0xaf, 0xf7, 0x57, 0xb2}: "tfxd",
|
|
{0xd4, 0x80, 0x7e, 0xf2, 0xca, 0x39, 0x46, 0x95, 0x8e, 0x54, 0x26, 0xcb, 0x9e, 0x46, 0xa7, 0x9f}: "tfrf",
|
|
{0x50, 0x52, 0x4f, 0x46, 0x21, 0xd2, 0x4f, 0xce, 0xbb, 0x88, 0x69, 0x5c, 0xfa, 0xc9, 0xc7, 0x40}: "prof",
|
|
{0x6b, 0x68, 0x40, 0xf2, 0x5f, 0x24, 0x4f, 0xc5, 0xba, 0x39, 0xa5, 0x1b, 0xcf, 0x03, 0x23, 0xf3}: "ipod",
|
|
}
|
|
|
|
d.FieldStringUUIDMapFn("uuid", uuidNames, "Unknown", func() []byte { return d.BytesLen(16) })
|
|
d.FieldBitBufLen("data", d.BitsLeft())
|
|
},
|
|
"keys": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
entryCount := d.FieldU32("entry_count")
|
|
d.FieldArrayFn("entries", func(d *decode.D) {
|
|
for i := uint64(0); i < entryCount; i++ {
|
|
d.FieldStructFn("entry", func(d *decode.D) {
|
|
keySize := d.FieldU32("key_size")
|
|
d.FieldUTF8("key_namespace", 4)
|
|
d.FieldUTF8("key_name", int(keySize)-8)
|
|
})
|
|
}
|
|
})
|
|
},
|
|
"wave": decodeBoxes,
|
|
"saiz": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
flags := d.FieldU24("flags")
|
|
if flags&0b1 != 0 {
|
|
d.FieldU32("aux_info_type")
|
|
d.FieldU32("aux_info_type_parameter")
|
|
}
|
|
defaultSampleInfoSize := d.FieldU8("default_sample_info_size")
|
|
sampleCount := d.FieldU32("sample_count")
|
|
if defaultSampleInfoSize == 0 {
|
|
d.FieldArrayFn("sample_size_info_table", func(d *decode.D) {
|
|
for i := uint64(0); i < sampleCount; i++ {
|
|
d.FieldU8("sample_size")
|
|
}
|
|
})
|
|
}
|
|
},
|
|
"sgpd": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
|
|
// TODO: version 2?
|
|
|
|
d.FieldU32("grouping_type")
|
|
defaultLength := d.FieldU32("default_length")
|
|
entryCount := d.FieldU32("entry_count")
|
|
d.FieldArrayFn("groups", func(d *decode.D) {
|
|
for i := uint64(0); i < entryCount; i++ {
|
|
d.FieldBitBufLen("group", int64(defaultLength)*8)
|
|
}
|
|
})
|
|
},
|
|
"sbgp": func(_ *decodeContext, d *decode.D) {
|
|
version := d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
|
|
d.FieldU32("grouping_type")
|
|
if version == 1 {
|
|
d.FieldU32("grouping_type_parameter")
|
|
}
|
|
entryCount := d.FieldU32("entry_count")
|
|
d.FieldArrayFn("entries", func(d *decode.D) {
|
|
for i := uint64(0); i < entryCount; i++ {
|
|
d.FieldStructFn("entry", func(d *decode.D) {
|
|
d.FieldU32("sample_count")
|
|
d.FieldU32("group_description_index")
|
|
})
|
|
}
|
|
})
|
|
},
|
|
"saio": func(_ *decodeContext, d *decode.D) {
|
|
version := d.FieldU8("version")
|
|
flags := d.FieldU24("flags")
|
|
|
|
if flags&0b1 != 0 {
|
|
d.FieldU32("aux_info_type")
|
|
d.FieldU32("aux_info_type_parameter")
|
|
}
|
|
entryCount := d.FieldU32("entry_count")
|
|
d.FieldArrayFn("entries", func(d *decode.D) {
|
|
for i := uint64(0); i < entryCount; i++ {
|
|
if version == 0 {
|
|
d.FieldU32("offset")
|
|
} else {
|
|
d.FieldU64("offset")
|
|
}
|
|
}
|
|
})
|
|
},
|
|
"senc": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
|
|
d.FieldU32("sample_count")
|
|
// d.FieldArrayFn("samples", func(d *decode.D) {
|
|
// for i := uint64(0); i < sampleCount; i++ {
|
|
// d.FieldStructFn("sample", func(d *decode.D) {
|
|
// // TODO: IV_size?
|
|
// d.FieldBitBufLen("iv", 8*8)
|
|
// if flags&0b10 != 0 {
|
|
// subSampleCount := d.FieldU32("sub_sample_count")
|
|
// d.FieldArrayFn("subsamples", func(d *decode.D) {
|
|
// for i := uint64(0); i < subSampleCount; i++ {
|
|
// d.FieldStructFn("subsample", func(d *decode.D) {
|
|
// d.FieldU16("bytes_of_clear_data")
|
|
// d.FieldU32("bytes_fo_encrypted_data")
|
|
// })
|
|
// }
|
|
// })
|
|
// }
|
|
// })
|
|
// }
|
|
// })
|
|
},
|
|
"tenc": func(_ *decodeContext, d *decode.D) {
|
|
version := d.FieldU8("version")
|
|
d.FieldU24("flags")
|
|
|
|
d.FieldU8("reserved0")
|
|
switch version {
|
|
case 0:
|
|
d.FieldU8("reserved1")
|
|
default:
|
|
d.FieldU4("default_crypto_bytes")
|
|
d.FieldU4("default_skip_bytes")
|
|
}
|
|
|
|
defaultIsEncrypted := d.FieldU8("default_is_encrypted")
|
|
defaultIVSize := d.FieldU8("default_iv_size")
|
|
d.FieldBitBufLen("default_kid", 8*16)
|
|
|
|
if defaultIsEncrypted != 0 && defaultIVSize == 0 {
|
|
d.FieldU8("default_constant_iv_size")
|
|
}
|
|
},
|
|
"covr": decodeBoxes,
|
|
"dec3": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU13("data_rate")
|
|
d.FieldU3("num_ind_sub")
|
|
d.FieldU2("fscod")
|
|
d.FieldU5("bsid")
|
|
d.FieldU5("bsmod")
|
|
d.FieldU3("acmod")
|
|
d.FieldU1("lfeon")
|
|
d.FieldU3("reserved0")
|
|
numDepSub := d.FieldU4("num_dep_sub")
|
|
if numDepSub > 0 {
|
|
d.FieldU9("chan_loc")
|
|
} else {
|
|
d.FieldU1("reserved1")
|
|
}
|
|
|
|
if d.BitsLeft() >= 16 {
|
|
d.FieldU7("reserved2")
|
|
ec3JocFlag := d.FieldBool("ec3_job_flag")
|
|
if ec3JocFlag {
|
|
d.FieldU1("ec3_job_complexity")
|
|
}
|
|
}
|
|
},
|
|
"dac4": func(_ *decodeContext, d *decode.D) {
|
|
d.FieldU3("ac4_dsi_version")
|
|
bitstreamVersion := d.FieldU7("bitstream_version")
|
|
d.FieldU1("fs_index")
|
|
d.FieldU4("frame_rate_index")
|
|
d.FieldU9("n_presentation")
|
|
|
|
if bitstreamVersion > 1 {
|
|
hasProgramID := d.FieldBool("has_program_id")
|
|
if hasProgramID {
|
|
d.FieldU16("short_program_id")
|
|
hasUuid := d.FieldBool("has_uuid")
|
|
if hasUuid {
|
|
d.FieldBitBufLen("uuid", 16*8)
|
|
}
|
|
}
|
|
}
|
|
|
|
// if ac4DsiVersion == 1 {
|
|
// d.FieldU2("bit_rate_mode")
|
|
// d.FieldU32("bit_rate")
|
|
// d.FieldU32("bit_rate_precision")
|
|
// }
|
|
|
|
// if ac4DsiVersion == 1 {
|
|
|
|
// d.FieldArrayFn("presentations", func(d *decode.D) {
|
|
// for i := uint64(0); i < nPresentation; i++ {
|
|
// d.FieldStructFn("presentation", func(d *decode.D) {
|
|
// d.FieldU8("presentation_version")
|
|
// presBytes := d.FieldUFn("pres_bytes", func() (uint64, decode.DisplayFormat, string) {
|
|
// n := d.U8()
|
|
// if n == 0x0ff {
|
|
// n += d.U16()
|
|
// }
|
|
// return n, decode.NumberDecimal, ""
|
|
// })
|
|
// d.FieldBitBufLen("data", int64(presBytes)*8)
|
|
// })
|
|
// }
|
|
// })
|
|
// }
|
|
|
|
if d.BitsLeft() > 0 {
|
|
d.FieldBitBufLen("data", d.BitsLeft())
|
|
}
|
|
},
|
|
}
|
|
}
|