diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2016-05-22 18:02:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-05-22 23:04:37 +0200 |
commit | 854c405dab236f8219bb0059cc3e0b8c6f66faca (patch) | |
tree | 4c0ac3c68d25d3af17c3020a7f77c5add96c788b /libavcodec/iff.c | |
parent | 5ce1d089f01a5be3d0fa2c53212e570f96769d88 (diff) | |
download | ffmpeg-854c405dab236f8219bb0059cc3e0b8c6f66faca.tar.gz |
avcodec/iff: mention RGB8/RGBN decoder
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/iff.c')
-rw-r--r-- | libavcodec/iff.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/iff.c b/libavcodec/iff.c index f92f2385b4..96ecd8a91a 100644 --- a/libavcodec/iff.c +++ b/libavcodec/iff.c @@ -1,5 +1,5 @@ /* - * IFF ACBM/ANIM/DEEP/ILBM/PBM bitmap decoder + * IFF ACBM/ANIM/DEEP/ILBM/PBM/RGB8/RGBN bitmap decoder * Copyright (c) 2010 Peter Ross <pross@xvid.org> * Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com> * Copyright (c) 2016 Paul B Mahol @@ -23,7 +23,7 @@ /** * @file - * IFF ACBM/ANIM/DEEP/ILBM/PBM bitmap decoder + * IFF ACBM/ANIM/DEEP/ILBM/PBM/RGB8/RGBN bitmap decoder */ #include <stdint.h> @@ -1751,7 +1751,7 @@ static int decode_frame(AVCodecContext *avctx, #if CONFIG_IFF_ILBM_DECODER AVCodec ff_iff_ilbm_decoder = { .name = "iff", - .long_name = NULL_IF_CONFIG_SMALL("IFF ACBM/ANIM/DEEP/ILBM/PBM"), + .long_name = NULL_IF_CONFIG_SMALL("IFF ACBM/ANIM/DEEP/ILBM/PBM/RGB8/RGBN"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_IFF_ILBM, .priv_data_size = sizeof(IffContext), |