aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-05-04 17:49:36 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-05-04 17:49:36 +0200
commit8ad04d24c82e4b59a89108c3d37095e8362788bd (patch)
tree257125a80ce864f96a333ac5cef164b2c5e6cb00 /libavformat
parentd90f91c1c85d252c7b6f6b42c256fc10f7d2b5e8 (diff)
downloadffmpeg-8ad04d24c82e4b59a89108c3d37095e8362788bd.tar.gz
lavf/apngenc: Fix png remuxing by using default extension apng.
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/apngenc.c2
-rw-r--r--libavformat/version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/apngenc.c b/libavformat/apngenc.c
index 4b31309334..dcf6b906e1 100644
--- a/libavformat/apngenc.c
+++ b/libavformat/apngenc.c
@@ -259,7 +259,7 @@ AVOutputFormat ff_apng_muxer = {
.name = "apng",
.long_name = NULL_IF_CONFIG_SMALL("Animated Portable Network Graphics"),
.mime_type = "image/png",
- .extensions = "png",
+ .extensions = "apng",
.priv_data_size = sizeof(APNGMuxContext),
.audio_codec = AV_CODEC_ID_NONE,
.video_codec = AV_CODEC_ID_APNG,
diff --git a/libavformat/version.h b/libavformat/version.h
index 8733dc377c..976fa60fc8 100644
--- a/libavformat/version.h
+++ b/libavformat/version.h
@@ -31,7 +31,7 @@
#define LIBAVFORMAT_VERSION_MAJOR 56
#define LIBAVFORMAT_VERSION_MINOR 31
-#define LIBAVFORMAT_VERSION_MICRO 101
+#define LIBAVFORMAT_VERSION_MICRO 102
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \