/external/libavc/decoder/ |
ih264d_cabac.c | 67 ps_cab_env->u4_code_int_range = (HALF - 2) << 23; 78 /*according to the standard the u4_code_int_range needs to be initialized 0x 1FE(10 bits) and 80 u4_code_int_range becomes less than 10 bits we need to renormalize and read from the bitstream* 239 UWORD32 u4_qnt_int_range, u4_code_int_range, u4_code_int_val_ofst, local 252 u4_code_int_range = ps_cab_env->u4_code_int_range; 256 u4_clz = CLZ(u4_code_int_range); 258 u4_qnt_int_range = u4_code_int_range << u4_clz; 265 u4_code_int_range = u4_code_int_range - u4_int_range_lps 317 UWORD32 u4_code_int_val_ofst, u4_code_int_range; local 399 UWORD32 u4_code_int_range, u4_code_int_val_ofst; local 470 UWORD32 u4_code_int_range, u4_code_int_val_ofst; local 538 UWORD32 u4_code_int_range, u4_code_int_val_ofst; local 625 UWORD32 u4_code_int_val_ofst, u4_code_int_range; local 719 UWORD32 u4_code_int_val_ofst, u4_code_int_range; local [all...] |
ih264d_cabac.h | 118 UWORD32 u4_code_int_range; member in struct:__anon15322 215 #define DECODE_ONE_BIN_MACRO(p_binCtxt_arg ,u4_code_int_range,u4_code_int_val_ofst, \ 229 u4_clz_m = CLZ(u4_code_int_range); \ 230 u4_quantCodeIntRange_m = u4_code_int_range << u4_clz_m; \ 236 u4_code_int_range = u4_code_int_range - u4_codeIntRangeLPS_m; \ 240 if(u4_code_int_val_ofst >= u4_code_int_range) \ 244 u4_code_int_val_ofst -= u4_code_int_range; \ 245 u4_code_int_range = u4_codeIntRangeLPS_m; \ 248 if(u4_code_int_range < ONE_RIGHT_SHIFTED_BY_8) [all...] |
ih264d_parse_cabac.c | 74 UWORD32 u4_code_int_range, u4_code_int_val_ofst; local 88 u4_code_int_range = ps_cab_env->u4_code_int_range; 105 u4_clz = CLZ(u4_code_int_range); 106 u4_qnt_int_range = u4_code_int_range << u4_clz; 112 u4_code_int_range = u4_code_int_range - u4_int_range_lps; 116 CHECK_IF_LPS(u4_code_int_range, u4_code_int_val_ofst, u4_symbol, 119 if(u4_code_int_range < ONE_RIGHT_SHIFTED_BY_8) 122 RENORM_RANGE_OFFSET(u4_code_int_range, u4_code_int_val_ofst 588 UWORD32 u4_code_int_range, u4_code_int_val_ofst; local [all...] |
ih264d_parse_mb_header.c | 702 UWORD32 u4_code_int_range, u4_code_int_val_ofst; local 711 u4_code_int_range = ps_cab_env->u4_code_int_range; 717 DECODE_ONE_BIN_MACRO(ps_ctxt_ipred_luma_mpm, u4_code_int_range, 740 DECODE_ONE_BIN_MACRO(ps_ctx_ipred_luma_rm, u4_code_int_range, 769 ps_cab_env->u4_code_int_range = u4_code_int_range; 799 UWORD32 u4_code_int_range, u4_code_int_val_ofst; local 814 u4_code_int_range = ps_cab_env->u4_code_int_range; 1271 UWORD32 u4_code_int_range, u4_code_int_val_ofst; local 1365 UWORD32 u4_code_int_val_ofst, u4_code_int_range; local [all...] |
/external/libavc/encoder/ |
ih264e_cabac_structs.h | 140 UWORD32 u4_code_int_range; member in struct:__anon15474
|
ih264e_cabac_encode.c | 207 UWORD32 u4_code_int_range; local 238 u4_code_int_range = ps_cab_enc_env->u4_code_int_range; 254 u2_quant_code_int_range = ((u4_code_int_range >> 6) & 0x03); 259 u4_code_int_range -= u4_code_int_range_lps; 262 u4_code_int_low += u4_code_int_range; 263 u4_code_int_range = u4_code_int_range_lps; 282 u4_code_int_range -= 2; 290 GETRANGE(shift, u4_code_int_range); 293 u4_code_int_range <<= shift [all...] |