From 9577d0ccc7397af698c471097d90acd0ed33d99c Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Fri, 20 Feb 2026 19:37:39 +0100 Subject: [PATCH] mov: reported rgb555 format should be big-endian --- nihav-commonfmt/src/demuxers/mov.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nihav-commonfmt/src/demuxers/mov.rs b/nihav-commonfmt/src/demuxers/mov.rs index db2b3bd..3dba7fd 100644 --- a/nihav-commonfmt/src/demuxers/mov.rs +++ b/nihav-commonfmt/src/demuxers/mov.rs @@ -18,7 +18,7 @@ const RGB555_FORMAT: NAPixelFormaton = NAPixelFormaton { Some(NAPixelChromaton{ h_ss: 0, v_ss: 0, packed: true, depth: 5, shift: 5, comp_offs: 0, next_elem: 2 }), Some(NAPixelChromaton{ h_ss: 0, v_ss: 0, packed: true, depth: 5, shift: 0, comp_offs: 0, next_elem: 2 }), None, None], - elem_size: 2, be: false, alpha: false, palette: false }; + elem_size: 2, be: true, alpha: false, palette: false }; pub const ARGB_FORMAT: NAPixelFormaton = NAPixelFormaton { model: ColorModel::RGB(RGBSubmodel::RGB), components: 4, -- 2.39.5