diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-03-15 11:03:27 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-03-17 16:05:15 +0100 |
commit | c6bbdba9cd8f022e1f697f624818431499d30fe1 (patch) | |
tree | eb8b56510407790e7ba83942e408fca4677ec25d /libavcodec/codec_desc.c | |
parent | 30a73361fa7ca18d9617ef5dbfaf8755da6c2dd9 (diff) | |
download | ffmpeg-c6bbdba9cd8f022e1f697f624818431499d30fe1.tar.gz |
avcodec: add derf dpcm 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 df3671765a..130e08c1f2 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -2415,6 +2415,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("DPCM Gremlin"), .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_DERF_DPCM, + .type = AVMEDIA_TYPE_AUDIO, + .name = "derf_dpcm", + .long_name = NULL_IF_CONFIG_SMALL("DPCM Xilam DERF"), + .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, + }, /* audio codecs */ { |