diff cabac.h @ 4014:b2582438effe libavcodec

dehack *ps_state indexing in the branchless decoder
author michael
date Fri, 13 Oct 2006 14:21:25 +0000
parents f8c649ac09dd
children d550343b5dac
line wrap: on
line diff
--- a/cabac.h	Fri Oct 13 10:48:29 2006 +0000
+++ b/cabac.h	Fri Oct 13 14:21:25 2006 +0000
@@ -47,6 +47,7 @@
     PutBitContext pb;
 }CABACContext;
 
+extern uint8_t ff_h264_mlps_state[4*64];
 extern uint8_t ff_h264_lps_range[2*65][4];  ///< rangeTabLPS
 extern uint8_t ff_h264_mps_state[2*64];     ///< transIdxMPS
 extern uint8_t ff_h264_lps_state[2*64];     ///< transIdxLPS
@@ -480,7 +481,7 @@
 #endif /* CMOV_IS_FAST */
 
 //eax:state ebx:low edx:mask esi:range
-        "movzbl "MANGLE(ff_h264_mps_state)"(%%eax), %%ecx   \n\t"
+        "movzbl "MANGLE(ff_h264_mlps_state)"+128(%%eax), %%ecx   \n\t"
         "movb %%cl, (%1)                        \n\t"
 
         "movl %%esi, %%edx                      \n\t"
@@ -550,7 +551,7 @@
     c->range += (RangeLPS - c->range) & lps_mask;
 
     s^=lps_mask;
-    *state= ff_h264_mps_state[s];
+    *state= (ff_h264_mlps_state+128)[s];
     bit= s&1;
 
     lps_mask= ff_h264_norm_shift[c->range>>(CABAC_BITS+3)];