diff options
author | Ben Littler <tempn@twmi.rr.com> | 2008-12-16 05:22:53 +0000 |
---|---|---|
committer | Ben Littler <tempn@twmi.rr.com> | 2008-12-16 05:22:53 +0000 |
commit | f86cd7613852c5c759bbbd3d4daf7084174f0459 (patch) | |
tree | 045576b38175802f13e8e54fec056f07320e6fa0 /libavformat/riff.c | |
parent | 4a49a5fdfc30793040e757b152efdb261534b8db (diff) | |
download | ffmpeg-f86cd7613852c5c759bbbd3d4daf7084174f0459.tar.gz |
add MPNG fourcc
fixes http://sceneish.ath.cx/stuff/netmap/netmap.avi
Originally committed as revision 16163 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index b48dd983df..7c40c6f2ca 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -186,6 +186,7 @@ const AVCodecTag codec_bmp_tags[] = { { CODEC_ID_JPEG2000, MKTAG('M', 'J', '2', 'C') }, { CODEC_ID_VMNC, MKTAG('V', 'M', 'n', 'c') }, { CODEC_ID_TARGA, MKTAG('t', 'g', 'a', ' ') }, + { CODEC_ID_PNG, MKTAG('M', 'P', 'N', 'G') }, { CODEC_ID_CLJR, MKTAG('c', 'l', 'j', 'r') }, { CODEC_ID_DIRAC, MKTAG('d', 'r', 'a', 'c') }, { CODEC_ID_RPZA, MKTAG('a', 'z', 'p', 'r') }, |