diff options
author | Thilo Borgmann <thilo.borgmann@googlemail.com> | 2009-04-10 12:18:04 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-10 12:18:04 +0000 |
commit | 0dccbba02c9c8ae4391876c4a015c08bfb1e5697 (patch) | |
tree | c2b5bbc34aac645b4d35dd3c6b15d634695fbd36 | |
parent | bea183757b05ef56afb3f5f98e43e0ac60c7d7a4 (diff) | |
download | ffmpeg-0dccbba02c9c8ae4391876c4a015c08bfb1e5697.tar.gz |
Add 'PNG1' to PNG fourcc codes.
Patch by Thilo Borgmann thilo DOT borgmann _AT_ gXXglemail.cXm.
Originally committed as revision 18415 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 3665176f47..5a3c48071d 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -198,6 +198,7 @@ const AVCodecTag codec_bmp_tags[] = { { 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_PNG, MKTAG('P', 'N', 'G', '1') }, { CODEC_ID_CLJR, MKTAG('c', 'l', 'j', 'r') }, { CODEC_ID_DIRAC, MKTAG('d', 'r', 'a', 'c') }, { CODEC_ID_RPZA, MKTAG('a', 'z', 'p', 'r') }, |