summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hutchinson <qyot27@gmail.com>2021-07-14 20:16:41 -0400
committerPaul B Mahol <onemda@gmail.com>2021-08-14 14:13:28 +0200
commit1c42fd93236e7869ef4d9fe3650dd3e951387321 (patch)
tree0394f690abd04f76b84800b6765661abf296b030
parentf0d4077c53b7960e8fe52c6cbe5047e18c81be4e (diff)
libavformat/isom_tags.c: add ipcm to list of tags
Fixes http://trac.ffmpeg.org/ticket/9219
-rw-r--r--libavformat/isom_tags.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom_tags.c b/libavformat/isom_tags.c
index 1666b9d4a5..e2e589b658 100644
--- a/libavformat/isom_tags.c
+++ b/libavformat/isom_tags.c
@@ -312,6 +312,8 @@ const AVCodecTag ff_codec_movaudio_tags[] = {
{ AV_CODEC_ID_PCM_S16LE, MKTAG('s', 'o', 'w', 't') },
{ AV_CODEC_ID_PCM_S16BE, MKTAG('l', 'p', 'c', 'm') },
{ AV_CODEC_ID_PCM_S16LE, MKTAG('l', 'p', 'c', 'm') },
+ { AV_CODEC_ID_PCM_S24BE, MKTAG('i', 'p', 'c', 'm') },
+ { AV_CODEC_ID_PCM_S24LE, MKTAG('i', 'p', 'c', 'm') },
{ AV_CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4') },
{ AV_CODEC_ID_PCM_S24LE, MKTAG('i', 'n', '2', '4') },
{ AV_CODEC_ID_PCM_S32BE, MKTAG('i', 'n', '3', '2') },