diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2022-03-23 18:29:01 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2022-03-23 18:29:01 +0100 |
commit | 2826a23f3a214e2f5d47d6dee6fb06754730dc0e (patch) | |
tree | 5f0b19de64d9efc4ad70dda92161fd59f02fdb24 /nihav-registry/src | |
parent | 7cb65894212b51b13b8ac2e30f9a520627938a3e (diff) | |
download | nihav-2826a23f3a214e2f5d47d6dee6fb06754730dc0e.tar.gz |
support Legend Entertainment Q format version 7
Diffstat (limited to 'nihav-registry/src')
-rw-r--r-- | nihav-registry/src/detect.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nihav-registry/src/detect.rs b/nihav-registry/src/detect.rs index d32fac3..f79d063 100644 --- a/nihav-registry/src/detect.rs +++ b/nihav-registry/src/detect.rs @@ -272,7 +272,7 @@ const DETECTORS: &[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(5))}], + CheckItem{offs: 2, cond: &CC::In(Arg::Byte(3), Arg::Byte(7))}], }, DetectConditions { demux_name: "smush", |