aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2020-03-06 19:21:55 +0100
committerKostya Shishkov <kostya.shishkov@gmail.com>2020-03-06 19:21:55 +0100
commit4998874b5e346025fa65e27020503989eebe47e6 (patch)
tree6eff9c7cfbe41391672a50dfcbb7cfcc190c3600
parent72be6d12c1d567f87fa8f2029a4d2e99199f89b9 (diff)
downloadnihav-4998874b5e346025fa65e27020503989eebe47e6.tar.gz
detect: fix Bink magic words
-rw-r--r--nihav-registry/src/detect.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/nihav-registry/src/detect.rs b/nihav-registry/src/detect.rs
index 44b6e54..96b9440 100644
--- a/nihav-registry/src/detect.rs
+++ b/nihav-registry/src/detect.rs
@@ -222,8 +222,8 @@ const DETECTORS: &[DetectConditions] = &[
DetectConditions {
demux_name: "bink",
extensions: ".bik,.bk2",
- conditions: &[CheckItem{offs: 0, cond: &CC::Or(&CC::In(Arg::U32BE(0x32494B62), // BIKb
- Arg::U32BE(0x32494B7B)), // BIKz
+ conditions: &[CheckItem{offs: 0, cond: &CC::Or(&CC::In(Arg::U32BE(0x42494B62), // BIKb
+ Arg::U32BE(0x42494B7B)), // BIKz
&CC::In(Arg::U32BE(0x4B423261), // KB2a
Arg::U32BE(0x4B42327B)))}], // KB2z
},