From: Kostya Shishkov Date: Sun, 22 Feb 2026 18:53:23 +0000 (+0100) Subject: mov: fix little-endian raw audio reporting X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=43cdf1d1de906880a440e137fb8e713772d8546f;p=nihav.git mov: fix little-endian raw audio reporting --- diff --git a/nihav-commonfmt/src/demuxers/mov.rs b/nihav-commonfmt/src/demuxers/mov.rs index a614d23..9b6de55 100644 --- a/nihav-commonfmt/src/demuxers/mov.rs +++ b/nihav-commonfmt/src/demuxers/mov.rs @@ -791,6 +791,9 @@ fn read_stsd(track: &mut Track, br: &mut dyn ByteIO, size: u64) -> DemuxerResult if &fcc == b"raw " && sample_size == 8 { soniton.signed = false; } + if &fcc == b"sowt" { + soniton.be = false; + } let mut block_align = 1; match sver { 1 => {