HomeSort by relevance Sort by last modified time
    Searched refs:state_mps (Results 1 - 3 of 3) sorted by null

  /external/libhevc/decoder/
ihevcd_cabac.h 65 WORD32 state_mps = *pu1_ctxt_model; \
73 ASSERT(state_mps < 128); \
79 u4_rlps = gau1_ihevc_cabac_rlps[state_mps >> 1][u4_qnt_range]; \
83 u4_bin = state_mps & 1; \
92 *pu1_ctxt_model = gau1_ihevc_next_state[(state_mps << 1) | u4_bin]; \
ihevcd_cabac.c 240 WORD32 state_mps = *pu1_ctxt_model; local
249 ASSERT(state_mps < 128);
259 u4_rlps = gau1_ihevc_cabac_rlps[state_mps >> 1][u4_qnt_range];
265 u4_bin = state_mps & 1;
274 *pu1_ctxt_model = gau1_ihevc_next_state[(state_mps << 1) | u4_bin];
  /external/libavc/encoder/
ih264e_cabac.c 479 UWORD8 state_mps = (*pu1_bin_ctxts) & 0x3F; local
488 u4_table_val= gau4_ih264_cabac_table[state_mps][(u4_range >> 6) & 0x3];
498 if (state_mps == 0)
504 state_mps = (u4_table_val >> 15) & 0x3F;
508 state_mps = (u4_table_val >> 8) & 0x3F;
511 (*pu1_bin_ctxts) = (u1_mps << 6) | state_mps;

Completed in 138 milliseconds