avformat/movenc: allow Apple Lossless inside mp4

The 'alac' identifier has been registered to ISO and thus towards
ISOBMFF at the MP4 registration authority. The existing non-MOV
mux mode matches the official ALAC-in-MP4 specification.
This commit is contained in:
Leo Izen 2020-11-20 11:38:31 -05:00 committed by Jan Ekström
parent 0066bf4d1a
commit f5dcaf2daa
1 changed files with 1 additions and 0 deletions

View File

@ -7128,6 +7128,7 @@ static const AVCodecTag codec_mp4_tags[] = {
{ AV_CODEC_ID_VP9, MKTAG('v', 'p', '0', '9') },
{ AV_CODEC_ID_AV1, MKTAG('a', 'v', '0', '1') },
{ AV_CODEC_ID_AAC, MKTAG('m', 'p', '4', 'a') },
{ AV_CODEC_ID_ALAC, MKTAG('a', 'l', 'a', 'c') },
{ AV_CODEC_ID_MP4ALS, MKTAG('m', 'p', '4', 'a') },
{ AV_CODEC_ID_MP3, MKTAG('m', 'p', '4', 'a') },
{ AV_CODEC_ID_MP2, MKTAG('m', 'p', '4', 'a') },