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 229 UWORD32 u4_bin; local
256 u4_bin = state_mps & 1;
260 u4_bin = 1 - u4_bin;
265 *pu1_ctxt_model = gau1_ihevc_next_state[(state_mps << 1) | u4_bin];
292 return (u4_bin);
319 UWORD32 u4_bin; local
333 u4_bin = 0;
336 u4_bin = 1;
343 return (u4_bin);
370 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 40 milliseconds