diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2011-10-16 17:20:17 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-19 08:24:19 +0200 |
commit | 0d8506b8c52659c5bfff9535391d5e95ddcd45f1 (patch) | |
tree | 6526357ffded31dbcaa4c61475f0a265d9c32125 /libavformat | |
parent | df3ca34a567c320fa5ccb0203d66d473acb7207e (diff) | |
download | ffmpeg-0d8506b8c52659c5bfff9535391d5e95ddcd45f1.tar.gz |
Ut Video decoder
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/riff.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 8587806647..0f4c079b35 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -275,6 +275,10 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_DPX, MKTAG('d', 'p', 'x', ' ') }, { CODEC_ID_KGV1, MKTAG('K', 'G', 'V', '1') }, { CODEC_ID_LAGARITH, MKTAG('L', 'A', 'G', 'S') }, + { CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'R', 'A') }, + { CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'R', 'G') }, + { CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'Y', '0') }, + { CODEC_ID_UTVIDEO, MKTAG('U', 'L', 'Y', '2') }, { CODEC_ID_NONE, 0 } }; |