From 044167a171d5fafdea75046759e3bfcc2d8889b6 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 27 Sep 2019 12:12:42 +0200 Subject: [PATCH] avformat/nut: add pcm_s64 support --- libavformat/nut.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/nut.c b/libavformat/nut.c index 937f452878..d6993239a3 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -227,6 +227,8 @@ const AVCodecTag ff_nut_audio_tags[] = { { AV_CODEC_ID_PCM_S24LE, MKTAG('P', 'S', 'D', 24 ) }, { AV_CODEC_ID_PCM_S32BE, MKTAG(32 , 'D', 'S', 'P') }, { AV_CODEC_ID_PCM_S32LE, MKTAG('P', 'S', 'D', 32 ) }, + { AV_CODEC_ID_PCM_S64BE, MKTAG(64 , 'D', 'S', 'P') }, + { AV_CODEC_ID_PCM_S64LE, MKTAG('P', 'S', 'D', 64 ) }, { AV_CODEC_ID_PCM_S8, MKTAG('P', 'S', 'D', 8 ) }, { AV_CODEC_ID_PCM_U16BE, MKTAG(16 , 'D', 'U', 'P') }, { AV_CODEC_ID_PCM_U16LE, MKTAG('P', 'U', 'D', 16 ) },