Browse Source

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.
tags/n4.4
Leo Izen Jan Ekström 5 years ago
parent
commit
f5dcaf2daa
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/movenc.c

+ 1
- 0
libavformat/movenc.c 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') },


Loading…
Cancel
Save