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/avcodec.h | |
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/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index eac3fc7757..3323284810 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -319,6 +319,7 @@ enum AVCodecID { AV_CODEC_ID_HEVC = MKBETAG('H','2','6','5'), #define AV_CODEC_ID_H265 AV_CODEC_ID_HEVC AV_CODEC_ID_VP7 = MKBETAG('V','P','7','0'), + AV_CODEC_ID_APNG = MKBETAG('A','P','N','G'), /* various PCM "codecs" */ AV_CODEC_ID_FIRST_AUDIO = 0x10000, ///< A dummy id pointing at the start of audio codecs |