aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-01-16 00:26:39 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-01-16 00:26:39 +0000
commit69d987a6e604b3a423dd23614e19c3268f94621d (patch)
tree9eae0e2325c87ecd39eb6451438a11e653e62e8d
parentb086d4ff9cf6b3b8bde74aefdc1c0589f98943db (diff)
downloadffmpeg-69d987a6e604b3a423dd23614e19c3268f94621d.tar.gz
add png fourcc
Originally committed as revision 7540 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/mov.c1
1 files changed, 1 insertions, 0 deletions
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 },
};