avcodec: add ADPCM XMD decoder

This commit is contained in:
Paul B Mahol 2023-01-25 19:31:44 +01:00
parent 9bfdd8524e
commit 280e6e93fc
8 changed files with 59 additions and 1 deletions

View file

@ -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 */
{