summaryrefslogtreecommitdiff
path: root/libavformat/nut.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-09-27 12:12:42 +0200
committerPaul B Mahol <onemda@gmail.com>2019-09-27 12:15:50 +0200
commit044167a171d5fafdea75046759e3bfcc2d8889b6 (patch)
treedefafd83bd327d92c4acbc47b8e63371d794b1fc /libavformat/nut.c
parentcde1d70a39ade9dba264122727051108a7e7f398 (diff)
avformat/nut: add pcm_s64 support
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r--libavformat/nut.c2
1 files changed, 2 insertions, 0 deletions
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 ) },