From: Kostya Shishkov Date: Mon, 31 Mar 2025 16:19:27 +0000 (+0200) Subject: h264: improve fill_deblock() a bit X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=1adc954c7b74528ce2a149466460308ed2663c90;p=nihav.git h264: improve fill_deblock() a bit --- diff --git a/nihav-itu/src/codecs/h264/types.rs b/nihav-itu/src/codecs/h264/types.rs index 4bcdb49..577cefe 100644 --- a/nihav-itu/src/codecs/h264/types.rs +++ b/nihav-itu/src/codecs/h264/types.rs @@ -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;