From 43cdf1d1de906880a440e137fb8e713772d8546f Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sun, 22 Feb 2026 19:53:23 +0100 Subject: [PATCH] mov: fix little-endian raw audio reporting --- nihav-commonfmt/src/demuxers/mov.rs | 3 +++ 1 file changed, 3 insertions(+) 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 => { -- 2.39.5