X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-registry%2Fsrc%2Fregister.rs;h=1a8e1eb04f98265103b1f2c7d229e940fc2b3a4f;hb=a91a83670604f3799b48c240591c9354ed9b3a6b;hp=48d4541715995917f6a4331a2da149a14cdfebef;hpb=afe1e5babec1591d397725fbb7d37285e5b7d70c;p=nihav.git diff --git a/nihav-registry/src/register.rs b/nihav-registry/src/register.rs index 48d4541..1a8e1eb 100644 --- a/nihav-registry/src/register.rs +++ b/nihav-registry/src/register.rs @@ -185,6 +185,10 @@ static CODEC_REGISTER: &[CodecDescription] = &[ desc!(audio; "atrac3", "Sony Atrac3"), desc!(audio; "sipro", "Sipro Labs ADPCM"), + + desc!(video-ll; "rawvideo", "Raw video data"), + desc!(video-ll; "rawvideo-ms", "Raw video data"), + desc!(video; "cinepak", "Cinepak"), desc!(video-llp; "zmbv", "Zip Motion Blocks Video"), @@ -232,6 +236,8 @@ static CODEC_REGISTER: &[CodecDescription] = &[ desc!(video; "fable-imax", "Fable IMAX video"), desc!(video; "fst-video", "FutureVision video"), desc!(audio; "fst-audio", "FutureVision audio"), + desc!(video-llp; "ipma", "Imagination Pilots Matte Animation"), + desc!(video-llp; "ipma2", "Imagination Pilots Matte Animation v2"), desc!(video; "legend-q-video", "Legend Entertainment Q video"), desc!(video; "midivid", "MidiVid"), desc!(video; "midivid3", "MidiVid 3"), @@ -286,6 +292,9 @@ static AVI_VIDEO_CODEC_REGISTER: &[(&[u8;4], &str)] = &[ (b"cvid", "cinepak"), (b"ZMBV", "zmbv"), + (b"Ipma", "ipma"), + (b"Ip20", "ipma2"), + (b"MVDV", "midivid"), (b"MV30", "midivid3"), (b"MVLZ", "midivid-ll"),