X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-registry%2Fsrc%2Fregister.rs;h=b9f8d8135a632d2e69ddc22e5622225ffac1b931;hb=03c406ea8acbaa3d0914005fec6cb896d5cdc144;hp=f9ecb3d720a7fb445cc96659a39f593db982205e;hpb=9d9c811bd8ca1a67702c7c51c990f61bd1947ec9;p=nihav.git diff --git a/nihav-registry/src/register.rs b/nihav-registry/src/register.rs index f9ecb3d..b9f8d81 100644 --- a/nihav-registry/src/register.rs +++ b/nihav-registry/src/register.rs @@ -175,6 +175,7 @@ static CODEC_REGISTER: &'static [CodecDescription] = &[ desc!(video; "cinepak", "Cinepak"), desc!(video; "msvideo1", "MS Video 1"), + desc!(video; "msrle", "MS RLE"), desc!(audio; "ms-adpcm", "MS ADPCM"), desc!(audio; "ima-adpcm-ms", "IMA ADPCM (MS variant)"), @@ -226,6 +227,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"),