diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2011-11-11 14:46:19 -0500 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-11-11 22:46:47 +0200 |
commit | c433a3f9a5ead7bd107384e20ea21de9f4c3f911 (patch) | |
tree | cfbf543df89872f08aa6ed077f41d0477b79c69e /libavformat | |
parent | b656c4d08e196424eb80b706e15d3c49b7c0af37 (diff) | |
download | ffmpeg-c433a3f9a5ead7bd107384e20ea21de9f4c3f911.tar.gz |
VBLE Decoder
Add a decoder for the VBLE Lossless Codec, which
still has a cult following. Used to be popular
several years ago on doom9.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Martin Storsjö <martin@martin.st>
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 8eed7ce28e..29c3803173 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -279,6 +279,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { 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_VBLE, MKTAG('V', 'B', 'L', 'E') }, { CODEC_ID_NONE, 0 } }; |