From: Kostya Shishkov Date: Sun, 19 Apr 2026 16:59:26 +0000 (+0200) Subject: mov: allow files with 'APPL' creator in MacBinary demuxer X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=1e441e58632453311d1f59ae2131147dd1c49a72;p=nihav.git mov: allow files with 'APPL' creator in MacBinary demuxer --- diff --git a/nihav-commonfmt/src/demuxers/mov/mod.rs b/nihav-commonfmt/src/demuxers/mov/mod.rs index 02b8146..77802d7 100644 --- a/nihav-commonfmt/src/demuxers/mov/mod.rs +++ b/nihav-commonfmt/src/demuxers/mov/mod.rs @@ -405,7 +405,7 @@ impl<'a> DemuxCore<'a> for MOVDemuxer<'a> { validate!(ver == 0); self.src.read_skip(64)?; let tag = self.src.read_tag()?; - validate!(&tag == b"MooV"); + validate!(&tag == b"MooV" || &tag == b"APPL"); self.src.read_skip(14)?; let data_length = self.src.read_u32be()?; validate!(data_length > 8);