Home
last modified time | relevance | path

Searched refs:u4_cbp (Results 1 – 7 of 7) sorted by relevance

/external/libavc/decoder/
Dih264d_parse_islice.c97 UWORD32 u4_cbp; in ih264d_parse_imb_cavlc() local
209 u4_cbp = ((1 << u4_ldz) + u4_word - 1); in ih264d_parse_imb_cavlc()
211 if(u4_cbp > 47) in ih264d_parse_imb_cavlc()
216 u4_cbp = gau1_ih264d_cbp_table[u4_cbp][0]; in ih264d_parse_imb_cavlc()
218 ps_cur_mb_info->u1_cbp = u4_cbp; in ih264d_parse_imb_cavlc()
312 u4_cbp = gau1_ih264d_cbp_tab[(u1_mb_type - 1) >> 2]; in ih264d_parse_imb_cavlc()
313 ps_cur_mb_info->u1_cbp = u4_cbp; in ih264d_parse_imb_cavlc()
443 if(u4_cbp) in ih264d_parse_imb_cavlc()
Dih264d_parse_bslice.c750 UWORD32 u4_cbp; in ih264d_parse_bmb_cavlc() local
808 u4_cbp = ((1 << u4_ldz) + u4_word - 1); in ih264d_parse_bmb_cavlc()
810 if(u4_cbp > 47) in ih264d_parse_bmb_cavlc()
812 u4_cbp = puc_CbpInter[u4_cbp]; in ih264d_parse_bmb_cavlc()
814 if((ps_dec->s_high_profile.u1_transform8x8_present) && (u4_cbp & (0xf)) in ih264d_parse_bmb_cavlc()
825 COPYTHECONTEXT("coded_block_pattern", u4_cbp); in ih264d_parse_bmb_cavlc()
826 ps_cur_mb_info->u1_cbp = u4_cbp; in ih264d_parse_bmb_cavlc()
829 if(u4_cbp) in ih264d_parse_bmb_cavlc()
Dih264d_parse_pslice.c323 UWORD32 u4_cbp; in ih264d_parse_pmb_cavlc() local
341 u4_cbp = ((1 << u4_ldz) + u4_word - 1); in ih264d_parse_pmb_cavlc()
343 if(u4_cbp > 47) in ih264d_parse_pmb_cavlc()
346 u4_cbp = *((UWORD8*)gau1_ih264d_cbp_inter + u4_cbp); in ih264d_parse_pmb_cavlc()
347 COPYTHECONTEXT("coded_block_pattern", u4_cbp); in ih264d_parse_pmb_cavlc()
348 ps_cur_mb_info->u1_cbp = u4_cbp; in ih264d_parse_pmb_cavlc()
351 if((ps_dec->s_high_profile.u1_transform8x8_present) && (u4_cbp & 0xf) in ih264d_parse_pmb_cavlc()
360 if(u4_cbp) in ih264d_parse_pmb_cavlc()
/external/libavc/encoder/
Dih264e_cabac_encode.c473 static void ih264e_cabac_enc_cbp(UWORD32 u4_cbp, cabac_ctxt_t *ps_cabac_ctxt) in ih264e_cabac_enc_cbp() argument
499 b = (((u4_cbp >> j) & 0x01) != 0 ? 0 : 1); in ih264e_cabac_enc_cbp()
515 a = (((u4_cbp >> j) & 0x01) != 0 ? 0 : 1); in ih264e_cabac_enc_cbp()
525 u1_bin = ((u4_cbp >> i) & 0x01); in ih264e_cabac_enc_cbp()
531 i2_cbp_chroma = u4_cbp >> 4; in ih264e_cabac_enc_cbp()
1142 UWORD32 u4_cbp, UWORD8 u1_ctx_cat) in ih264e_cabac_encode_residue() argument
1162 if (u4_cbp & 0xf) in ih264e_cabac_encode_residue()
1194 if (!((u4_cbp >> u1_b3b2) & 0x1)) in ih264e_cabac_encode_residue()
1274 u1_cbp_chroma = u4_cbp >> 4; in ih264e_cabac_encode_residue()
Dih264e_process.c724 ps_mb_hdr->common.u1_cbp = ps_proc->u4_cbp; in ih264e_pack_header_data()
791 ps_mb_hdr->common.u1_cbp = ps_proc->u4_cbp; in ih264e_pack_header_data()
810 ps_mb_hdr->common.u1_cbp = ps_proc->u4_cbp; in ih264e_pack_header_data()
849 ps_mb_hdr->common.u1_cbp = ps_proc->u4_cbp; in ih264e_pack_header_data()
887 ps_mb_hdr->common.u1_cbp = ps_proc->u4_cbp; in ih264e_pack_header_data()
2262 ps_proc->u4_cbp = (u4_cbp_c << 4) | u4_cbp_l; in ih264e_process()
2270 ps_proc->u4_mb_type = (ps_proc->u4_cbp) ? BDIRECT : BSKIP; in ih264e_process()
2273 else if(!ps_proc->u4_cbp) in ih264e_process()
Dih264e_cavlc.c700 UWORD32 u4_cbp) in ih264e_encode_residue() argument
727 UWORD32 u4_cbp_luma = u4_cbp & 0xF, u4_cbp_chroma = u4_cbp >> 4; in ih264e_encode_residue()
Dih264e_structs.h1878 UWORD32 u4_cbp; member