]> git.nihav.org Git - nihav.git/commitdiff
h264: use uninitalised buffer for MC
authorKostya Shishkov <kostya.shishkov@gmail.com>
Mon, 31 Mar 2025 16:08:37 +0000 (18:08 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Tue, 1 Apr 2025 10:19:12 +0000 (12:19 +0200)
nihav-itu/src/codecs/h264/dsp/mc/mod.rs

index 615563ee78113f1e4a629da2361bd96d1f6ef83d..776575f9a67ea29ca227d7ec1b10df276e0cff07 100644 (file)
@@ -82,7 +82,8 @@ impl H264MC {
         self.height = height;
     }
     pub fn do_mc(&mut self, frm: &mut NASimpleVideoFrame<u8>, refpic: &SimpleFrame, xpos: usize, ypos: usize, w: usize, h: usize, mv: MV) {
-        let mut ebuf = [0u8; 22 * 22];
+        let ubuf = std::mem::MaybeUninit::<[u8; 22 * 22]>::uninit();
+        let mut ebuf = unsafe { ubuf.assume_init() };
         let mvx = mv.x >> 2;
         let mvy = mv.y >> 2;
         let mode = ((mv.x & 3) + (mv.y & 3) * 4) as usize;