]> git.nihav.org Git - nihav.git/commitdiff
h264: improve fill_deblock() a bit
authorKostya Shishkov <kostya.shishkov@gmail.com>
Mon, 31 Mar 2025 16:19:27 +0000 (18:19 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Tue, 1 Apr 2025 10:20:05 +0000 (12:20 +0200)
nihav-itu/src/codecs/h264/types.rs

index 4bcdb4943547318d09df4c858f7412fa7aedd080..577cefe93685843413861115bb3c036749db9b38 100644 (file)
@@ -571,13 +571,17 @@ impl SliceState {
                                 cur_mvs[1..].iter().zip(top_mvs[1..].iter())).zip(
                             cur_refs[1..].iter().zip(
                                 top_refs[1..].iter())).take(4).enumerate() {
+                        let mut mask = 0;
                         if cur_cc || top_cc {
-                            self.deblock[y * 4 + x] |= 0x20;
+                            mask = 0x20;
                         } else {
                             if mvdiff4(cur_mv, top_mv) || !frefs.cmp_refs(cur_ref, top_ref) {
-                                self.deblock[y * 4 + x] |= 0x10;
+                                mask = 0x10;
                             }
                         }
+                        if mask != 0 {
+                            self.deblock[y * 4 + x] = mask;
+                        }
                     }
                 }
             }
@@ -591,16 +595,20 @@ impl SliceState {
                 if !can_do_left {
                     continue;
                 }
+                let mut mask = 0;
                 if skip_8 {
                 } else if is_s || cur_intra || lleft_intra {
-                    self.deblock[y * 4 + x] |= if x == 0 { 4 } else { 3 };
+                    mask = if x == 0 { 4 } else { 3 };
                 } else if cur_cc || left_cc {
-                    self.deblock[y * 4 + x] |= 2;
+                    mask = 2;
                 } else {
                     if mvdiff4(cur_mv, left_mv) || !frefs.cmp_refs(cur_ref, left_ref) {
-                        self.deblock[y * 4 + x] |= 1;
+                        mask = 1;
                     }
                 }
+                if mask != 0 {
+                    self.deblock[y * 4 + x] |= mask;
+                }
                 lleft_intra = cur_intra;
             }
             top_intra = cur_intra;