]> git.nihav.org Git - nihav.git/commitdiff
mov: reported rgb555 format should be big-endian
authorKostya Shishkov <kostya.shishkov@gmail.com>
Fri, 20 Feb 2026 18:37:39 +0000 (19:37 +0100)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Fri, 20 Feb 2026 18:37:39 +0000 (19:37 +0100)
nihav-commonfmt/src/demuxers/mov.rs

index db2b3bd32b232f7041fcaa22594ba45d10feed64..3dba7fd35b08a90639f8ae317cd29596c19acbba 100644 (file)
@@ -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,