diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-11-16 16:00:04 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-09-27 01:33:45 +0200 |
commit | 7e52080cb18332cb1da9fe133498750b6b4b0fb3 (patch) | |
tree | eca35956f53acf8f3d00a4667c854b0f20126395 /libavformat/nut.c | |
parent | 839df90c718dcab9b9e91ca3c7e73479b3e8103c (diff) | |
download | ffmpeg-7e52080cb18332cb1da9fe133498750b6b4b0fb3.tar.gz |
pcm: support 24-bit/32-bit little-endian planar
Used by LXF.
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r-- | libavformat/nut.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index e8dbc54a10..2e1d129ed7 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -146,6 +146,8 @@ const AVCodecTag ff_nut_audio_tags[] = { { AV_CODEC_ID_PCM_U32LE, MKTAG('P', 'U', 'D', 32) }, { AV_CODEC_ID_PCM_U8, MKTAG('P', 'U', 'D', 8) }, { 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) }, { AV_CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') }, { AV_CODEC_ID_NONE, 0 } }; |