summaryrefslogtreecommitdiff
path: root/libavformat/isom.c
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-07-14 18:42:29 +0200
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-03-09 18:09:39 +0100
commitdb32f14c3dfd75290b57a086183d6577457beac4 (patch)
tree242e65041089c444e80180e5bafe2883f609dbf9 /libavformat/isom.c
parent073cd30fb4dc1c2a885c62540e3cfaac1f17c21b (diff)
isom: add "MNG" FourCC
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r--libavformat/isom.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c
index 3b545096c1..22f413f655 100644
--- a/libavformat/isom.c
+++ b/libavformat/isom.c
@@ -213,6 +213,7 @@ const AVCodecTag ff_codec_movvideo_tags[] = {
{ AV_CODEC_ID_TIFF, MKTAG('t', 'i', 'f', 'f') }, /* TIFF embedded in MOV */
{ AV_CODEC_ID_GIF, MKTAG('g', 'i', 'f', ' ') }, /* embedded gif files as frames (usually one "click to play movie" frame) */
{ AV_CODEC_ID_PNG, MKTAG('p', 'n', 'g', ' ') },
+ { AV_CODEC_ID_PNG, MKTAG('M', 'N', 'G', ' ') },
{ AV_CODEC_ID_VC1, MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */
{ AV_CODEC_ID_CAVS, MKTAG('a', 'v', 's', '2') },