diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-10-13 14:16:24 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-10-16 16:37:40 +0200 |
commit | 8b11e43799260009dead51667bf6ff0157c05ff4 (patch) | |
tree | 7b7d14c5231040d93c5f5194b7e7c82869dbbab9 /libavcodec/codec_desc.c | |
parent | 377883c4be7a5b27d57737a79d6a58a6af0ae6cd (diff) | |
download | ffmpeg-8b11e43799260009dead51667bf6ff0157c05ff4.tar.gz |
avcodec: add ADPCM PSX 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 0817f0c49b..69798574d8 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1978,6 +1978,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("LucasArts VIMA audio"), .props = AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_ADPCM_PSX, + .type = AVMEDIA_TYPE_AUDIO, + .name = "adpcm_psx", + .long_name = NULL_IF_CONFIG_SMALL("ADPCM PSX"), + .props = AV_CODEC_PROP_LOSSY, + }, /* AMR */ { |