diff options
author | Ben Littler <tempn@twmi.rr.com> | 2009-01-08 17:51:03 +0000 |
---|---|---|
committer | Ben Littler <tempn@twmi.rr.com> | 2009-01-08 17:51:03 +0000 |
commit | 949462b32ea273e80d701924765d0494a7ad199c (patch) | |
tree | 3fde2fdf78f57b626cb469455e27da6888579101 | |
parent | 15cdff8525b2458b038457a250c693255697ab44 (diff) | |
download | ffmpeg-949462b32ea273e80d701924765d0494a7ad199c.tar.gz |
fourcc CJPG is sequential jpeg
Originally committed as revision 16496 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 e9214d3e5b..dd08dfcbac 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -117,6 +117,7 @@ const AVCodecTag codec_bmp_tags[] = { { CODEC_ID_MJPEG, MKTAG('A', 'V', 'R', 'n') }, { CODEC_ID_MJPEG, MKTAG('A', 'C', 'D', 'V') }, { CODEC_ID_MJPEG, MKTAG('Q', 'I', 'V', 'G') }, + { CODEC_ID_MJPEG, MKTAG('C', 'J', 'P', 'G') }, { CODEC_ID_HUFFYUV, MKTAG('H', 'F', 'Y', 'U') }, { CODEC_ID_FFVHUFF, MKTAG('F', 'F', 'V', 'H') }, { CODEC_ID_CYUV, MKTAG('C', 'Y', 'U', 'V') }, |