]> git.nihav.org Git - nihav.git/commitdiff
h264: rearrange some instructions in cabac_coder
authorKostya Shishkov <kostya.shishkov@gmail.com>
Mon, 31 Mar 2025 16:01:37 +0000 (18:01 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Tue, 1 Apr 2025 10:01:57 +0000 (12:01 +0200)
nihav-itu/src/codecs/h264/cabac_coder.rs

index 82c20b00ee63e67a4fa96f1f2465e133da5caaf8..2ff09e27f85062a5f0bbe93758b60bff26119315 100644 (file)
@@ -167,14 +167,14 @@ impl<'a> CABAC<'a> {
             asm!(
                 // unpack state
                 "movzx  {state_idx:e},  byte ptr [{ctx} + 0x18 + {idx}]",
+                "movzx  {tmp},          word ptr [{ctx} + 0x418]",
                 "mov    {val_mps:x},    {state_idx:x}",
                 "and    {state_idx},    0x3F",
                 "and    {val_mps:r},    0x80",
-                "movzx  {tmp},          word ptr [{ctx} + 0x418]",
-                "mov    {bit:r},        {val_mps:r}",
                 "shr    {tmp},          6",
-                "and    {tmp},          3",
+                "mov    {bit:r},        {val_mps:r}",
                 "lea    {range_lps:r},  {range_tab}[rip]",
+                "and    {tmp},          3",
                 "lea    {range_lps:r},  [{range_lps:r} + {state_idx} * 4]",
                 "movzx  {range_lps:x},  byte ptr [{range_lps:r} + {tmp}]",
                 // self.cod_range -= range_lps;