From 305fe9ae5902d850b4016d93eba7130a51680da1 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 19 Nov 2012 09:54:07 +0000 Subject: [PATCH] nut: add tag for PCM signed 8-bit planar Signed-off-by: Paul B Mahol --- libavformat/nut.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/nut.c b/libavformat/nut.c index 927b3d0f36..a670449c99 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_S8_PLANAR, MKTAG('P', 'S', 'P', 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 ) },