diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-11-15 16:17:55 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-11-17 19:30:08 +0000 |
commit | 9ba41ae63e079198ef4a9e83b5fa147e20966bdb (patch) | |
tree | 2557e93ebacd42d141872eaf128b5b804f7b1399 /libavcodec/codec_desc.c | |
parent | 37e2a9783fd07558e2ce49b7cf2f617bf500f512 (diff) | |
download | ffmpeg-9ba41ae63e079198ef4a9e83b5fa147e20966bdb.tar.gz |
PCM signed 16-bit big-endian planar decoder
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 0d1f740adc..2cb24167b9 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1448,6 +1448,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .props = AV_CODEC_PROP_LOSSY, }, { + .id = AV_CODEC_ID_PCM_S16BE_PLANAR, + .type = AVMEDIA_TYPE_AUDIO, + .name = "pcm_s16be_planar", + .long_name = NULL_IF_CONFIG_SMALL("PCM signed 16-bit big-endian planar"), + .props = AV_CODEC_PROP_LOSSLESS, + }, + { .id = AV_CODEC_ID_PCM_S16LE_PLANAR, .type = AVMEDIA_TYPE_AUDIO, .name = "pcm_s16le_planar", |