diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-01-25 19:31:44 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-01-30 20:57:37 +0100 |
commit | 280e6e93fc96afbbb73f1987eb3d603f8949ea30 (patch) | |
tree | b8db5770c67f28b5e79ce03c938f6207b6914c1e /libavcodec/codec_desc.c | |
parent | 9bfdd8524e4d3657be4057798bd4f015322827b2 (diff) | |
download | ffmpeg-280e6e93fc96afbbb73f1987eb3d603f8949ea30.tar.gz |
avcodec: add ADPCM XMD decoder
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 50f9794e10..fbb6604f76 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -2536,6 +2536,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("ADPCM IMA Acorn Replay"), .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_ADPCM_XMD, + .type = AVMEDIA_TYPE_AUDIO, + .name = "adpcm_xmd", + .long_name = NULL_IF_CONFIG_SMALL("ADPCM Konami XMD"), + .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, + }, /* AMR */ { |