1
1
mirror of https://github.com/wader/fq.git synced 2024-11-29 12:14:17 +03:00
fq/format/mpeg/mpeg_asc.go
2023-05-01 13:19:04 +02:00

57 lines
1.5 KiB
Go

package mpeg
// https://wiki.multimedia.cx/index.php/MPEG-4_Audio
import (
"github.com/wader/fq/format"
"github.com/wader/fq/pkg/decode"
"github.com/wader/fq/pkg/interp"
"github.com/wader/fq/pkg/scalar"
)
func init() {
interp.RegisterFormat(
format.MPEG_ASC,
&decode.Format{
Description: "MPEG-4 Audio Specific Config",
DecodeFn: ascDecoder,
})
}
var frequencyIndexHzMap = scalar.UintMapSymUint{
0x0: 96000,
0x1: 88200,
0x2: 64000,
0x3: 48000,
0x4: 44100,
0x5: 32000,
0x6: 24000,
0x7: 22050,
0x8: 16000,
0x9: 12000,
0xa: 11025,
0xb: 8000,
0xc: 7350,
}
var channelConfigurationNames = scalar.UintMapDescription{
0: "defined in AOT Specifc Config",
1: "front-center",
2: "front-left, front-right",
3: "front-center, front-left, front-right",
4: "front-center, front-left, front-right, back-center",
5: "front-center, front-left, front-right, back-left, back-right",
6: "front-center, front-left, front-right, back-left, back-right, LFE-channel",
7: "front-center, front-left, front-right, side-left, side-right, back-left, back-right, LFE-channel",
}
func ascDecoder(d *decode.D) any {
objectType := d.FieldUintFn("object_type", decodeEscapeValueCarryFn(5, 6, 0), format.MPEGAudioObjectTypeNames)
d.FieldUintFn("sampling_frequency", decodeEscapeValueAbsFn(4, 24, 0), frequencyIndexHzMap)
d.FieldU4("channel_configuration", channelConfigurationNames)
// TODO: GASpecificConfig etc
d.FieldRawLen("var_aot_or_byte_align", d.BitsLeft())
return format.MPEG_ASC_Out{ObjectType: int(objectType)}
}