From: Kostya Shishkov Date: Fri, 20 Feb 2026 18:37:39 +0000 (+0100) Subject: mov: reported rgb555 format should be big-endian X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=9577d0ccc7397af698c471097d90acd0ed33d99c;p=nihav.git mov: reported rgb555 format should be big-endian --- 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,