diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-12-17 18:56:56 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-12-17 18:56:56 +0000 |
commit | 4aaab0a328b671f91a6cd195ef98f0d5592c5e4a (patch) | |
tree | 97e6719e083406318fe849456a023b4ea25ed622 /libavformat/riff.c | |
parent | a3d995c1eb98e38186bf9ed677809c442a7dab35 (diff) | |
download | ffmpeg-4aaab0a328b671f91a6cd195ef98f0d5592c5e4a.tar.gz |
Add decoder for R210 (uncompressed 10-bit RGB) codec.
Originally committed as revision 20891 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 e1d0b2e085..8dfc7d3f39 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -163,6 +163,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('H', 'D', 'Y', 'C') }, { CODEC_ID_RAWVIDEO, MKTAG('Y', 'V', 'U', '9') }, { CODEC_ID_FRWU, MKTAG('F', 'R', 'W', 'U') }, + { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, { CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') }, { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') }, |