Commit 854c405d authored by Piotr Bandurski's avatar Piotr Bandurski Committed by Michael Niedermayer

avcodec/iff: mention RGB8/RGBN decoder

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 5ce1d089
...@@ -887,7 +887,7 @@ static const AVCodecDescriptor codec_descriptors[] = { ...@@ -887,7 +887,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
.id = AV_CODEC_ID_IFF_ILBM, .id = AV_CODEC_ID_IFF_ILBM,
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
.name = "iff_ilbm", .name = "iff_ilbm",
.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"),
.props = AV_CODEC_PROP_LOSSY, .props = AV_CODEC_PROP_LOSSY,
}, },
{ {
......
/* /*
* 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 Peter Ross <pross@xvid.org>
* Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com> * Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com>
* Copyright (c) 2016 Paul B Mahol * Copyright (c) 2016 Paul B Mahol
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
/** /**
* @file * @file
* IFF ACBM/ANIM/DEEP/ILBM/PBM bitmap decoder * IFF ACBM/ANIM/DEEP/ILBM/PBM/RGB8/RGBN bitmap decoder
*/ */
#include <stdint.h> #include <stdint.h>
...@@ -1751,7 +1751,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -1751,7 +1751,7 @@ static int decode_frame(AVCodecContext *avctx,
#if CONFIG_IFF_ILBM_DECODER #if CONFIG_IFF_ILBM_DECODER
AVCodec ff_iff_ilbm_decoder = { AVCodec ff_iff_ilbm_decoder = {
.name = "iff", .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, .type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_IFF_ILBM, .id = AV_CODEC_ID_IFF_ILBM,
.priv_data_size = sizeof(IffContext), .priv_data_size = sizeof(IffContext),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment