diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2014-11-21 12:05:47 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-21 17:13:56 +0100 |
commit | 33acebd3ccfca1a2762c152ee998e82a8d0a746c (patch) | |
tree | 793865bd2beea8fdc94d4e522122d5b28040d959 /libavcodec/codec_desc.c | |
parent | 367c9d33d6dd1e8a85b63e14464e7e08ee1315cc (diff) | |
download | ffmpeg-33acebd3ccfca1a2762c152ee998e82a8d0a746c.tar.gz |
avcodec/pngdec: add APNG support.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index eeb45054c5..0af66f495a 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1440,6 +1440,14 @@ static const AVCodecDescriptor codec_descriptors[] = { .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, .mime_types= MT("image/x-xwindowdump"), }, + { + .id = AV_CODEC_ID_APNG, + .type = AVMEDIA_TYPE_VIDEO, + .name = "apng", + .long_name = NULL_IF_CONFIG_SMALL("APNG (Animated Portable Network Graphics) image"), + .props = AV_CODEC_PROP_LOSSLESS, + .mime_types= MT("image/png"), + }, /* various PCM "codecs" */ { |