diff mbox series

[FFmpeg-devel] libavformat/isom_tags.c: add ipcm to list of tags

Message ID 20210715001641.2598-1-qyot27@gmail.com
State Accepted
Commit 1c42fd93236e7869ef4d9fe3650dd3e951387321
Headers show
Series [FFmpeg-devel] libavformat/isom_tags.c: add ipcm to list of tags | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate fail Make fate failed
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate warning Make fate failed

Commit Message

Stephen Hutchinson July 15, 2021, 12:16 a.m. UTC
Fixes http://trac.ffmpeg.org/ticket/9219
---
 libavformat/isom_tags.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Paul B Mahol July 16, 2021, 6:25 p.m. UTC | #1
On Thu, Jul 15, 2021 at 2:48 AM Stephen Hutchinson <qyot27@gmail.com> wrote:

> Fixes http://trac.ffmpeg.org/ticket/9219
> ---
>  libavformat/isom_tags.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> 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') },
> --
> 2.30.2
>
>
Dunno about LE part, but should be fine if tested with sample.


> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
>
diff mbox series

Patch

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') },