2020-06-08 03:29:51 +03:00
|
|
|
package mp4
|
|
|
|
|
2021-09-14 18:01:25 +03:00
|
|
|
// Tries to decode ISOBMFF quicktime mov
|
2021-08-12 13:51:17 +03:00
|
|
|
// Uses naming from ISOBMFF when possible
|
|
|
|
// ISO/IEC 14496-12
|
2020-06-08 03:29:51 +03:00
|
|
|
// Quicktime file format https://developer.apple.com/standards/qtff-2001.pdf
|
|
|
|
// FLAC in ISOBMFF https://github.com/xiph/flac/blob/master/doc/isoflac.txt
|
2021-09-14 18:01:25 +03:00
|
|
|
// vp9 in ISOBMFF https://www.webmproject.org/vp9/mp4/
|
|
|
|
// https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/Metadata/Metadata.html#//apple_ref/doc/uid/TP40000939-CH1-SW43
|
2021-08-12 13:51:17 +03:00
|
|
|
|
2020-06-08 03:29:51 +03:00
|
|
|
// TODO: validate structure better? trak/stco etc
|
|
|
|
// TODO: keep track of structure somehow to detect errors
|
2021-09-14 18:01:25 +03:00
|
|
|
// TODO: ISO-14496 says mp4 mdat can begin and end with original header/trailer (no used?)
|
2020-06-08 03:29:51 +03:00
|
|
|
// TODO: split into mov and mp4 decoder?
|
|
|
|
// TODO: split into mp4_box decoder? needs complex in/out args?
|
|
|
|
// TODO: better probe, find first 2 boxes, should be free,ftyp or mdat?
|
|
|
|
|
|
|
|
import (
|
|
|
|
"embed"
|
|
|
|
"sort"
|
2021-08-17 13:06:32 +03:00
|
|
|
|
|
|
|
"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
|
|
|
)
|
|
|
|
|
|
|
|
//go:embed *.jq
|
|
|
|
var mp4FS embed.FS
|
|
|
|
|
2021-11-17 18:46:10 +03:00
|
|
|
var aacFrameFormat decode.Group
|
|
|
|
var av1CCRFormat decode.Group
|
|
|
|
var av1FrameFormat decode.Group
|
|
|
|
var flacFrameFormat decode.Group
|
|
|
|
var flacMetadatablocksFormat decode.Group
|
|
|
|
var id3v2Format decode.Group
|
|
|
|
var imageFormat decode.Group
|
|
|
|
var jpegFormat decode.Group
|
|
|
|
var mp3FrameFormat decode.Group
|
|
|
|
var mpegAVCAUFormat decode.Group
|
|
|
|
var mpegAVCDCRFormat decode.Group
|
|
|
|
var mpegESFormat decode.Group
|
|
|
|
var mpegHEVCDCRFrameFormat decode.Group
|
|
|
|
var mpegHEVCSampleFormat decode.Group
|
|
|
|
var mpegPESPacketSampleFormat decode.Group
|
|
|
|
var opusPacketFrameFormat decode.Group
|
|
|
|
var protoBufWidevineFormat decode.Group
|
|
|
|
var psshPlayreadyFormat decode.Group
|
|
|
|
var vorbisPacketFormat decode.Group
|
|
|
|
var vp9FrameFormat decode.Group
|
|
|
|
var vpxCCRFormat decode.Group
|
2020-06-08 03:29:51 +03:00
|
|
|
|
|
|
|
func init() {
|
2021-11-17 18:46:10 +03:00
|
|
|
registry.MustRegister(decode.Format{
|
2020-06-08 03:29:51 +03:00
|
|
|
Name: format.MP4,
|
|
|
|
Description: "MPEG-4 file and similar",
|
2021-10-19 02:57:15 +03:00
|
|
|
Groups: []string{
|
|
|
|
format.PROBE,
|
|
|
|
format.IMAGE, // avif
|
|
|
|
},
|
|
|
|
DecodeFn: mp4Decode,
|
2020-06-08 03:29:51 +03:00
|
|
|
Dependencies: []decode.Dependency{
|
2021-11-17 18:46:10 +03:00
|
|
|
{Names: []string{format.AAC_FRAME}, Group: &aacFrameFormat},
|
|
|
|
{Names: []string{format.AV1_CCR}, Group: &av1CCRFormat},
|
|
|
|
{Names: []string{format.AV1_FRAME}, Group: &av1FrameFormat},
|
|
|
|
{Names: []string{format.FLAC_FRAME}, Group: &flacFrameFormat},
|
|
|
|
{Names: []string{format.FLAC_METADATABLOCKS}, Group: &flacMetadatablocksFormat},
|
|
|
|
{Names: []string{format.ID3V2}, Group: &id3v2Format},
|
|
|
|
{Names: []string{format.IMAGE}, Group: &imageFormat},
|
|
|
|
{Names: []string{format.JPEG}, Group: &jpegFormat},
|
|
|
|
{Names: []string{format.MP3_FRAME}, Group: &mp3FrameFormat},
|
|
|
|
{Names: []string{format.AVC_AU}, Group: &mpegAVCAUFormat},
|
|
|
|
{Names: []string{format.AVC_DCR}, Group: &mpegAVCDCRFormat},
|
|
|
|
{Names: []string{format.MPEG_ES}, Group: &mpegESFormat},
|
|
|
|
{Names: []string{format.HEVC_AU}, Group: &mpegHEVCSampleFormat},
|
|
|
|
{Names: []string{format.HEVC_DCR}, Group: &mpegHEVCDCRFrameFormat},
|
|
|
|
{Names: []string{format.MPEG_PES_PACKET}, Group: &mpegPESPacketSampleFormat},
|
|
|
|
{Names: []string{format.OPUS_PACKET}, Group: &opusPacketFrameFormat},
|
|
|
|
{Names: []string{format.PROTOBUF_WIDEVINE}, Group: &protoBufWidevineFormat},
|
|
|
|
{Names: []string{format.PSSH_PLAYREADY}, Group: &psshPlayreadyFormat},
|
|
|
|
{Names: []string{format.VORBIS_PACKET}, Group: &vorbisPacketFormat},
|
|
|
|
{Names: []string{format.VP9_FRAME}, Group: &vp9FrameFormat},
|
|
|
|
{Names: []string{format.VPX_CCR}, Group: &vpxCCRFormat},
|
2020-06-08 03:29:51 +03:00
|
|
|
},
|
2021-09-21 17:42:35 +03:00
|
|
|
Files: mp4FS,
|
2020-06-08 03:29:51 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type stsc struct {
|
|
|
|
firstChunk uint32
|
|
|
|
samplesPerChunk uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
type moof struct {
|
|
|
|
offset int64
|
|
|
|
defaultSampleSize uint32
|
|
|
|
defaultSampleDescriptionIndex uint32
|
|
|
|
dataOffset uint32
|
|
|
|
samplesSizes []uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
type sampleDescription struct {
|
2021-09-02 19:02:04 +03:00
|
|
|
dataFormat string
|
|
|
|
originalFormat string
|
2020-06-08 03:29:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type track struct {
|
|
|
|
id uint32
|
|
|
|
sampleDescriptions []sampleDescription
|
|
|
|
subType string
|
|
|
|
stco []uint64 //
|
|
|
|
stsc []stsc
|
|
|
|
stsz []uint32
|
2021-09-16 16:29:11 +03:00
|
|
|
formatInArg interface{}
|
2020-06-08 03:29:51 +03:00
|
|
|
objectType int // if data format is "mp4a"
|
|
|
|
|
|
|
|
moofs []*moof // for fmp4
|
|
|
|
currentMoof *moof
|
|
|
|
}
|
|
|
|
|
|
|
|
type decodeContext struct {
|
|
|
|
path []string
|
|
|
|
tracks map[uint32]*track
|
|
|
|
currentTrack *track
|
|
|
|
currentMoofOffset int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func isParent(ctx *decodeContext, typ string) bool {
|
|
|
|
return len(ctx.path) >= 2 && ctx.path[len(ctx.path)-2] == typ
|
|
|
|
}
|
|
|
|
|
|
|
|
func mp4Decode(d *decode.D, in interface{}) interface{} {
|
|
|
|
ctx := &decodeContext{
|
|
|
|
tracks: map[uint32]*track{},
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: nicer, validate functions without field?
|
2021-11-05 17:04:26 +03:00
|
|
|
d.AssertLeastBytesLeft(16)
|
2020-06-08 03:29:51 +03:00
|
|
|
size := d.U32()
|
|
|
|
if size < 8 {
|
2021-11-17 18:26:13 +03:00
|
|
|
d.Fatalf("first box size too small < 8")
|
2020-06-08 03:29:51 +03:00
|
|
|
}
|
|
|
|
firstType := d.UTF8(4)
|
|
|
|
switch firstType {
|
|
|
|
case "styp", "ftyp", "free", "moov":
|
|
|
|
default:
|
2021-11-17 18:26:13 +03:00
|
|
|
d.Errorf("no styp, ftyp, free or moov box found")
|
2020-06-08 03:29:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
d.SeekRel(-8 * 8)
|
|
|
|
|
|
|
|
decodeBoxes(ctx, d)
|
|
|
|
|
|
|
|
// keep track order stable
|
|
|
|
var sortedTracks []*track
|
|
|
|
for _, t := range ctx.tracks {
|
|
|
|
sortedTracks = append(sortedTracks, t)
|
|
|
|
}
|
|
|
|
sort.Slice(sortedTracks, func(i, j int) bool { return sortedTracks[i].id < sortedTracks[j].id })
|
|
|
|
|
2021-11-05 17:04:26 +03:00
|
|
|
d.FieldArray("tracks", func(d *decode.D) {
|
2020-06-08 03:29:51 +03:00
|
|
|
for _, t := range sortedTracks {
|
2021-09-16 16:29:11 +03:00
|
|
|
decodeSampleRange := func(d *decode.D, t *track, dataFormat string, name string, firstBit int64, nBits int64, inArg interface{}) {
|
2020-06-08 03:29:51 +03:00
|
|
|
switch dataFormat {
|
|
|
|
case "fLaC":
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, flacFrameFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
case "Opus":
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, opusPacketFrameFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
case "vp09":
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, vp9FrameFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
case "avc1":
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, mpegAVCAUFormat, inArg)
|
2021-08-11 13:58:10 +03:00
|
|
|
case "hev1", "hvc1":
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, mpegHEVCSampleFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
case "av01":
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, av1FrameFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
case "mp4a":
|
|
|
|
switch t.objectType {
|
|
|
|
case format.MPEGObjectTypeMP3:
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, mp3FrameFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
case format.MPEGObjectTypeAAC:
|
|
|
|
// TODO: MPEGObjectTypeAACLow, Main etc?
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, aacFrameFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
case format.MPEGObjectTypeVORBIS:
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, vorbisPacketFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
default:
|
2021-11-05 17:04:26 +03:00
|
|
|
d.RangeFn(firstBit, nBits, func(d *decode.D) {
|
|
|
|
d.FieldRawLen(name, d.BitsLeft())
|
|
|
|
})
|
2020-06-08 03:29:51 +03:00
|
|
|
}
|
|
|
|
case "mp4v":
|
|
|
|
switch t.objectType {
|
|
|
|
case format.MPEGObjectTypeMPEG2VideoMain:
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, mpegPESPacketSampleFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
case format.MPEGObjectTypeMJPEG:
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, jpegFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
default:
|
2021-11-05 17:04:26 +03:00
|
|
|
d.RangeFn(firstBit, nBits, func(d *decode.D) {
|
|
|
|
d.FieldRawLen(name, d.BitsLeft())
|
|
|
|
})
|
2020-06-08 03:29:51 +03:00
|
|
|
}
|
|
|
|
case "jpeg":
|
2021-09-16 16:29:11 +03:00
|
|
|
d.FieldFormatRange(name, firstBit, nBits, jpegFormat, inArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
default:
|
2021-11-05 17:04:26 +03:00
|
|
|
d.RangeFn(firstBit, nBits, func(d *decode.D) {
|
|
|
|
d.FieldRawLen(name, d.BitsLeft())
|
|
|
|
})
|
2020-06-08 03:29:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 17:04:26 +03:00
|
|
|
d.FieldStruct("track", func(d *decode.D) {
|
2020-06-08 03:29:51 +03:00
|
|
|
// TODO: handle progressive/fragmented mp4 differently somehow?
|
2021-09-02 19:02:04 +03:00
|
|
|
|
|
|
|
trackSdDataFormat := "unknown"
|
|
|
|
if len(t.sampleDescriptions) > 0 {
|
|
|
|
sd := t.sampleDescriptions[0]
|
|
|
|
trackSdDataFormat = sd.dataFormat
|
|
|
|
if sd.originalFormat != "" {
|
|
|
|
trackSdDataFormat = sd.originalFormat
|
|
|
|
}
|
2020-06-08 03:29:51 +03:00
|
|
|
}
|
|
|
|
|
2021-11-05 17:04:26 +03:00
|
|
|
d.FieldArray("samples", func(d *decode.D) {
|
2020-06-08 03:29:51 +03:00
|
|
|
stscIndex := 0
|
|
|
|
chunkNr := uint32(0)
|
|
|
|
sampleNr := uint64(0)
|
|
|
|
|
|
|
|
for sampleNr < uint64(len(t.stsz)) {
|
|
|
|
if stscIndex >= len(t.stsc) {
|
|
|
|
// TODO: add warning
|
|
|
|
break
|
|
|
|
}
|
|
|
|
stscEntry := t.stsc[stscIndex]
|
|
|
|
if int(chunkNr) >= len(t.stco) {
|
|
|
|
// TODO: add warning
|
|
|
|
break
|
|
|
|
}
|
|
|
|
sampleOffset := t.stco[chunkNr]
|
|
|
|
|
|
|
|
for i := uint32(0); i < stscEntry.samplesPerChunk; i++ {
|
|
|
|
if int(sampleNr) >= len(t.stsz) {
|
|
|
|
// TODO: add warning
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
sampleSize := t.stsz[sampleNr]
|
2021-09-16 16:29:11 +03:00
|
|
|
decodeSampleRange(d, t, trackSdDataFormat, "sample", int64(sampleOffset)*8, int64(sampleSize)*8, t.formatInArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
|
2021-09-06 18:50:19 +03:00
|
|
|
// log.Printf("%s %d/%d %d/%d sample=%d/%d chunk=%d size=%d %d-%d\n",
|
|
|
|
// trackSdDataFormat, stscIndex, len(t.stsc),
|
|
|
|
// i, stscEntry.samplesPerChunk,
|
|
|
|
// sampleNr, len(t.stsz),
|
|
|
|
// chunkNr,
|
|
|
|
// sampleSize,
|
|
|
|
// sampleOffset,
|
|
|
|
// sampleOffset+uint64(sampleSize))
|
2020-06-08 03:29:51 +03:00
|
|
|
|
|
|
|
sampleOffset += uint64(sampleSize)
|
|
|
|
sampleNr++
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
chunkNr++
|
|
|
|
if stscIndex < len(t.stsc)-1 && chunkNr >= t.stsc[stscIndex+1].firstChunk-1 {
|
|
|
|
stscIndex++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, m := range t.moofs {
|
|
|
|
sampleOffset := m.offset + int64(m.dataOffset)
|
|
|
|
for _, sz := range m.samplesSizes {
|
|
|
|
// log.Printf("moof sample %s %d-%d\n", t.dataFormat, sampleOffset, int64(sz))
|
|
|
|
|
2021-09-02 19:02:04 +03:00
|
|
|
dataFormat := trackSdDataFormat
|
2020-06-08 03:29:51 +03:00
|
|
|
if m.defaultSampleDescriptionIndex != 0 && int(m.defaultSampleDescriptionIndex-1) < len(t.sampleDescriptions) {
|
2021-09-02 19:02:04 +03:00
|
|
|
sd := t.sampleDescriptions[m.defaultSampleDescriptionIndex-1]
|
|
|
|
dataFormat = sd.dataFormat
|
|
|
|
if sd.originalFormat != "" {
|
|
|
|
dataFormat = sd.originalFormat
|
|
|
|
}
|
2020-06-08 03:29:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// log.Printf("moof %#+v dataFormat: %#+v\n", m, dataFormat)
|
|
|
|
|
2021-09-16 16:29:11 +03:00
|
|
|
decodeSampleRange(d, t, dataFormat, "sample", sampleOffset*8, int64(sz)*8, t.formatInArg)
|
2020-06-08 03:29:51 +03:00
|
|
|
sampleOffset += int64(sz)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|