X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-registry%2Fsrc%2Fdetect.rs;h=a7f521dc4471f553751235ede44bd08ca624196c;hb=f9fc73be53d5226f12dc8f566b082f0758e87a87;hp=87226a730ccea6a18c7e41c167c89e9c3b103f95;hpb=3900194bcd88993d828dd56a30018e4b47bce6e0;p=nihav.git diff --git a/nihav-registry/src/detect.rs b/nihav-registry/src/detect.rs index 87226a7..a7f521d 100644 --- a/nihav-registry/src/detect.rs +++ b/nihav-registry/src/detect.rs @@ -419,6 +419,18 @@ 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", + conditions: &[], + }, DetectConditions { demux_name: "vmd", extensions: ".vmd",