diff options
author | Donny Yang <work@kota.moe> | 2015-03-28 19:06:24 +1100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-02 04:52:59 +0200 |
commit | 80be7daaa8ddf0716c413df17e75e5beffbc2a64 (patch) | |
tree | d6dd569ff4de6083007fa6ba3a27ffe91fd3f5cf /libavformat/allformats.c | |
parent | d75984486399e655cbcba098e986ced4e1187efa (diff) | |
download | ffmpeg-80be7daaa8ddf0716c413df17e75e5beffbc2a64.tar.gz |
apng: Add a basic APNG muxer
Additionally, update some documentation with support for APNG
Signed-off-by: Donny Yang <work@kota.moe>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 26ccc27a17..ca45db8fb9 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -74,7 +74,7 @@ void av_register_all(void) REGISTER_DEMUXER (ANM, anm); REGISTER_DEMUXER (APC, apc); REGISTER_DEMUXER (APE, ape); - REGISTER_DEMUXER (APNG, apng); + REGISTER_MUXDEMUX(APNG, apng); REGISTER_DEMUXER (AQTITLE, aqtitle); REGISTER_MUXDEMUX(ASF, asf); REGISTER_MUXDEMUX(ASS, ass); |