From 2d6ff332983aefe02ee546299c7cdb0aa7b62f52 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Tue, 23 Apr 2024 18:54:34 +0200 Subject: [PATCH] registry: add detection rule for ARMovie --- nihav-registry/src/detect.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nihav-registry/src/detect.rs b/nihav-registry/src/detect.rs index cf17875..87226a7 100644 --- a/nihav-registry/src/detect.rs +++ b/nihav-registry/src/detect.rs @@ -250,6 +250,11 @@ const DETECTORS: &[DetectConditions] = &[ extensions: ".y4m", conditions: &[CheckItem{offs: 0, cond: &CC::Str(b"YUV4MPEG2 ") }], }, + DetectConditions { + demux_name: "armovie", + extensions: ".rpl", + conditions: &[CheckItem{offs: 0, cond: &CC::Str(b"ARMovie\n") }], + }, DetectConditions { demux_name: "flv", extensions: ".flv", -- 2.30.2