summaryrefslogtreecommitdiff
path: root/libavformat/nut.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-11-15 16:17:55 +0000
committerPaul B Mahol <onemda@gmail.com>2012-11-17 19:30:08 +0000
commit9ba41ae63e079198ef4a9e83b5fa147e20966bdb (patch)
tree2557e93ebacd42d141872eaf128b5b804f7b1399 /libavformat/nut.c
parent37e2a9783fd07558e2ce49b7cf2f617bf500f512 (diff)
PCM signed 16-bit big-endian planar decoder
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r--libavformat/nut.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c
index 7a400f8fa0..927b3d0f36 100644
--- a/libavformat/nut.c
+++ b/libavformat/nut.c
@@ -167,6 +167,7 @@ const AVCodecTag ff_nut_audio_tags[] = {
{ AV_CODEC_ID_PCM_U32BE, MKTAG(32 , 'D', 'U', 'P') },
{ AV_CODEC_ID_PCM_U32LE, MKTAG('P', 'U', 'D', 32 ) },
{ AV_CODEC_ID_PCM_U8, MKTAG('P', 'U', 'D', 8 ) },
+ { AV_CODEC_ID_PCM_S16BE_PLANAR, MKTAG(16 , 'P', 'S', 'P') },
{ AV_CODEC_ID_PCM_S16LE_PLANAR, MKTAG('P', 'S', 'P', 16 ) },
{ AV_CODEC_ID_PCM_S24LE_PLANAR, MKTAG('P', 'S', 'P', 24 ) },
{ AV_CODEC_ID_PCM_S32LE_PLANAR, MKTAG('P', 'S', 'P', 32 ) },