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

  /external/libhevc/decoder/
ihevcd_cabac.h 59 #define IHEVCD_CABAC_DECODE_BIN(u4_bin, ps_cabac, ps_bitstrm, ctxt_index) \
83 u4_bin = state_mps & 1; \
87 u4_bin = 1 - u4_bin; \
92 *pu1_ctxt_model = gau1_ihevc_next_state[(state_mps << 1) | u4_bin]; \
117 #define IHEVCD_CABAC_DECODE_BIN(u4_bin, ps_cabac, ps_bitstrm, ctxt_index) \
118 u4_bin = ihevcd_cabac_decode_bin(ps_cabac, ps_bitstrm, ctxt_index);
122 #define IHEVCD_CABAC_DECODE_BYPASS_BIN(u4_bin, ps_cabac, ps_bitstrm) \
139 u4_bin = 0; \
142 u4_bin = 1;
    [all...]
ihevcd_cabac.c 238 UWORD32 u4_bin; local
265 u4_bin = state_mps & 1;
269 u4_bin = 1 - u4_bin;
274 *pu1_ctxt_model = gau1_ihevc_next_state[(state_mps << 1) | u4_bin];
301 return (u4_bin);
328 UWORD32 u4_bin; local
342 u4_bin = 0;
345 u4_bin = 1;
352 return (u4_bin);
379 UWORD32 u4_bin; local
    [all...]
  /external/libavc/decoder/
ih264d_cabac.c 624 UWORD32 u4_bin; local
656 u4_bin = 1;
662 u4_bin = 0;
681 while(u4_bin && (u4_value < u1_max_bins));
685 u4_value = (u4_value - 1 + u4_bin);
718 UWORD32 u4_bin; local
745 u4_bin = 1;
751 u4_bin = 0;
756 u4_bins = ((u4_bins << 1) | u4_bin);

Completed in 2107 milliseconds