]> git.nihav.org Git - nihav.git/commitdiff
vp56: remove outdated comment
authorKostya Shishkov <kostya.shishkov@gmail.com>
Tue, 19 May 2026 04:12:14 +0000 (06:12 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Tue, 19 May 2026 04:12:14 +0000 (06:12 +0200)
nihav-duck/src/codecs/vp56.rs

index fa13bb6e059413ea7f6708bbd429d74a425fc420..17b403fcc41a2737a2a1172adf367ae1b1376a3c 100644 (file)
@@ -484,7 +484,7 @@ impl VP56Decoder {
             bc = BoolCoder::new(src)?;
         }
         let hdr = br.parse_header(&mut bc)?;
-        validate!((hdr.offset as usize) < aoffset); //XXX: take alpha 3 byte offset into account?
+        validate!((hdr.offset as usize) < aoffset);
 
         if hdr.mb_w != 0 && (usize::from(hdr.mb_w) != self.mb_w || usize::from(hdr.mb_h) != self.mb_h) {
             self.set_dimensions((hdr.mb_w as usize) * 16, (hdr.mb_h as usize) * 16);