summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-07-14 18:42:29 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-15 14:49:32 +0200
commit8d0ec6e060b23c8ef188d759f59ee1e536c494ed (patch)
tree7af86055b337ccf181a682d3f6ef462adcdd5854
parent2c31ed33306c9e78caa679508757b1c5698be4ad (diff)
isom: add "MNG" FourCC
sample: http://www.datafilehost.com/download-92da395c.html Reviewed-by: compn <tempn@twmi.rr.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/isom.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c
index 0ddbb813ec..088845350c 100644
--- a/libavformat/isom.c
+++ b/libavformat/isom.c
@@ -219,6 +219,7 @@ const AVCodecTag ff_codec_movvideo_tags[] = {
{ CODEC_ID_TIFF, MKTAG('t', 'i', 'f', 'f') }, /* TIFF embedded in MOV */
{ CODEC_ID_GIF, MKTAG('g', 'i', 'f', ' ') }, /* embedded gif files as frames (usually one "click to play movie" frame) */
{ CODEC_ID_PNG, MKTAG('p', 'n', 'g', ' ') },
+ { CODEC_ID_PNG, MKTAG('M', 'N', 'G', ' ') },
{ CODEC_ID_VC1, MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */
{ CODEC_ID_CAVS, MKTAG('a', 'v', 's', '2') },