diff options
author | Kostya Shishkov <[email protected]> | 2020-06-07 14:49:13 +0200 |
---|---|---|
committer | Kostya Shishkov <[email protected]> | 2020-06-07 14:49:13 +0200 |
commit | 423005dc1d521e9089c9ddcf020979b825e30443 (patch) | |
tree | 259e21147fa6f970815aae6cc10d21f9f4983c74 /nihav-registry/src | |
parent | 30940e7459d0fa54e1831bb9825b1b91787ac3d7 (diff) |
Microsoft RLE decoder
Diffstat (limited to 'nihav-registry/src')
-rw-r--r-- | nihav-registry/src/register.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nihav-registry/src/register.rs b/nihav-registry/src/register.rs index f9ecb3d..466a3f7 100644 --- a/nihav-registry/src/register.rs +++ b/nihav-registry/src/register.rs @@ -226,6 +226,9 @@ static CODEC_REGISTER: &'static [CodecDescription] = &[ ]; static AVI_VIDEO_CODEC_REGISTER: &'static [(&[u8;4], &str)] = &[ + (&[1, 0, 0, 0], "msrle"), + (&[2, 0, 0, 0], "msrle"), + (b"CRAM", "msvideo1"), (b"MSVC", "msvideo1"), (b"WHAM", "msvideo1"), |