]> git.nihav.org Git - nihav.git/commitdiff
nihav-registry/detect: remove entries for the no longer supported formats master
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 30 Nov 2024 15:48:51 +0000 (16:48 +0100)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 30 Nov 2024 15:50:30 +0000 (16:50 +0100)
nihav-registry/src/detect.rs

index a7f521dc4471f553751235ede44bd08ca624196c..287f1f6801b88c04bb1ca337b072739aa4af5b74 100644 (file)
@@ -273,11 +273,6 @@ const DETECTORS: &[DetectConditions] = &[
         conditions: &[CheckItem{offs: 0, cond: &CC::Str(b"DKIF\x00\x00")},
                       CheckItem{offs: 6, cond: &CC::Ge(Arg::U16LE(32))}],
     },
-    DetectConditions {
-        demux_name: "arxel-cnm",
-        extensions: ".cnm",
-        conditions: &[CheckItem{offs: 0, cond: &CC::Str(b"CNM UNR\x00")}],
-    },
     DetectConditions {
         demux_name: "fcmp",
         extensions: ".cmp",
@@ -293,24 +288,6 @@ const DETECTORS: &[DetectConditions] = &[
         extensions: ".gdv",
         conditions: &[CheckItem{offs: 0, cond: &CC::Eq(Arg::U32LE(0x29111994))}],
     },
-    DetectConditions {
-        demux_name: "fable-imax",
-        extensions: ".imx",
-        conditions: &[CheckItem{offs:  0, cond: &CC::Str(b"IMAX") },
-                      CheckItem{offs: 10, cond: &CC::Eq(Arg::U16LE(0x102)) }],
-    },
-    DetectConditions {
-        demux_name: "hl-fmv",
-        extensions: ".fmv",
-        conditions: &[CheckItem{offs:  0, cond: &CC::Str(b"FMV*") },
-                      CheckItem{offs:  4, cond: &CC::Eq(Arg::U32LE(0)) }],
-    },
-    DetectConditions {
-        demux_name: "legend-q",
-        extensions: ".q",
-        conditions: &[CheckItem{offs: 0, cond: &CC::Eq(Arg::U16LE(0x6839))},
-                      CheckItem{offs: 2, cond: &CC::In(Arg::Byte(3), Arg::Byte(7))}],
-    },
     DetectConditions {
         demux_name: "siff",
         extensions: ".vb,.vbc,.fcp,.son",
@@ -419,13 +396,6 @@ const DETECTORS: &[DetectConditions] = &[
         extensions: ".dtv,.avc",
         conditions: &[],
     },
-    DetectConditions {
-        demux_name: "sierra-rbt",
-        extensions: ".rbt",
-        conditions: &[CheckItem{offs: 0, cond: &CC::Eq(Arg::Byte(0x16)) },
-                      CheckItem{offs: 2, cond: &CC::Str(b"SOL\0")},
-                      CheckItem{offs: 6, cond: &CC::In(Arg::U16LE(4), Arg::U16LE(6))}],
-    },
     DetectConditions {
         demux_name: "sierra-seq",
         extensions: ".seq",
@@ -436,11 +406,6 @@ const DETECTORS: &[DetectConditions] = &[
         extensions: ".vmd",
         conditions: &[],
     },
-    DetectConditions {
-        demux_name: "vx",
-        extensions: ".vx",
-        conditions: &[CheckItem{offs: 0, cond: &CC::Str(b"VXDS") }],
-    },
 ];
 
 /// Tries to detect container format.