diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-09-18 05:25:29 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-09-18 05:25:29 +0000 |
commit | b30cb420cf20495d73e8ee8abda99517de7f525b (patch) | |
tree | 13aa37e8cb89ef4a69424b95139ea1521a8e937f /libavformat | |
parent | 44aa9771c98be64e33af605797c08e86ccfdfef0 (diff) | |
download | ffmpeg-b30cb420cf20495d73e8ee8abda99517de7f525b.tar.gz |
Add fourcc for MS RLE4
Originally committed as revision 15357 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-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 0cab2650ce..98a805d3b2 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -121,6 +121,7 @@ const AVCodecTag codec_bmp_tags[] = { { CODEC_ID_XAN_WC4, MKTAG('X', 'x', 'a', 'n') }, { CODEC_ID_MSRLE, MKTAG('m', 'r', 'l', 'e') }, { CODEC_ID_MSRLE, MKTAG( 1 , 0 , 0 , 0 ) }, + { CODEC_ID_MSRLE, MKTAG( 2 , 0 , 0 , 0 ) }, { CODEC_ID_MSVIDEO1, MKTAG('M', 'S', 'V', 'C') }, { CODEC_ID_MSVIDEO1, MKTAG('m', 's', 'v', 'c') }, { CODEC_ID_MSVIDEO1, MKTAG('C', 'R', 'A', 'M') }, |