diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-01-20 11:18:38 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-01-27 13:53:29 +0100 |
commit | 795af110f70bbd12b45ae2d3b08e7f45db5224a0 (patch) | |
tree | 708e289c4e0354632068113b214d81280d452de5 /libavcodec/codec_desc.c | |
parent | d8ebfd1bdf7e2c47af3eb057b97de5b7fe854e35 (diff) | |
download | ffmpeg-795af110f70bbd12b45ae2d3b08e7f45db5224a0.tar.gz |
avcodec: add ARBC decoder
Thanks Kostya for great help in reversing binary.
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 10a639101c..7b254c1d45 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1698,6 +1698,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("HuffYUV MT"), .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, }, + { + .id = AV_CODEC_ID_ARBC, + .type = AVMEDIA_TYPE_VIDEO, + .name = "arbc", + .long_name = NULL_IF_CONFIG_SMALL("Gryphon's Anim Compressor"), + .props = AV_CODEC_PROP_LOSSY, + }, /* various PCM "codecs" */ { |