X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Fregister.rs;h=7c1fc1d7cfcd583b174f80cd38852d44db7dfe06;hb=d24468d9dbd54f5cbe414649ff061699337fa7fe;hp=817263e0c062ac81d90e3a091709138a526d9130;hpb=629a102529407457851701428cc192ba2aa1b1f0;p=nihav.git diff --git a/nihav-core/src/register.rs b/nihav-core/src/register.rs index 817263e..7c1fc1d 100644 --- a/nihav-core/src/register.rs +++ b/nihav-core/src/register.rs @@ -145,9 +145,9 @@ static CODEC_REGISTER: &'static [CodecDescription] = &[ desc!(audio; "atrac3", "Sony Atrac3"), desc!(audio; "sipro", "Sipro Labs ADPCM"), - desc!(video; "truemotion1", "TrueMotion 1"), - desc!(video-im; "truemotionrt", "TrueMotion RT"), - desc!(video; "truemotion2", "TrueMotion 2"), + desc!(video; "truemotion1", "TrueMotion 1"), + desc!(video-im; "truemotionrt", "TrueMotion RT"), + desc!(video; "truemotion2", "TrueMotion 2"), desc!(video; "truemotion2x", "TrueMotion 2X"), desc!(video; "vp3", "VP3"), desc!(video; "vp4", "VP4"), @@ -168,6 +168,9 @@ static CODEC_REGISTER: &'static [CodecDescription] = &[ desc!(audio; "bmv-audio", "BMV audio"), desc!(video; "bmv3-video", "DW Noir BMV video"), desc!(audio; "bmv3-audio", "DW Noir BMV audio"), + desc!(video; "midivid", "MidiVid"), + desc!(video; "midivid3", "MidiVid 3"), + desc!(video-ll; "midivid-ll", "MidiVid Lossless"), desc!(video; "vmd-video", "VMD video"), desc!(audio; "vmd-audio", "VMD audio"), @@ -190,6 +193,10 @@ static AVI_VIDEO_CODEC_REGISTER: &'static [(&[u8;4], &str)] = &[ (b"UCOD", "clearvideo"), + (b"MVDV", "midivid"), + (b"MV30", "midivid3"), + (b"MVLZ", "midivid-ll"), + (b"DUCK", "truemotion1"), (b"TR20", "truemotionrt"), (b"TM20", "truemotion2"), @@ -202,6 +209,7 @@ static AVI_VIDEO_CODEC_REGISTER: &'static [(&[u8;4], &str)] = &[ (b"VP60", "vp6"), (b"VP61", "vp6"), (b"VP62", "vp6"), + (b"VP6A", "vp6a"), (b"VP70", "vp7"), ];