From 69d987a6e604b3a423dd23614e19c3268f94621d Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Tue, 16 Jan 2007 00:26:39 +0000 Subject: [PATCH] add png fourcc Originally committed as revision 7540 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 3d1ef2d571..a723f0b3e4 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -122,6 +122,7 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, /* UNCOMPRESSED 8BIT 4:2:2 */ { CODEC_ID_VC1, MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */ { CODEC_ID_WMV3, MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */ + { CODEC_ID_PNG, MKTAG('p', 'n', 'g', ' ') }, { CODEC_ID_NONE, 0 }, };