Searched refs:c_idx (Results 1 – 6 of 6) sorted by relevance
/external/libhevc/decoder/ |
D | ihevcd_statistics.h | 114 void ihevcd_update_num_all_trans_blocks(TRANSFORM_TYPE e_trans_type, WORD32 c_idx); 115 void ihevcd_update_num_trans_blocks(TRANSFORM_TYPE e_trans_type, WORD32 c_idx, WORD32 update_type); 127 #define STATS_UPDATE_ALL_TRANS(e_trans_type, c_idx) ihevcd_update_num_all_trans_blocks(e_trans_type… argument 128 …e STATS_UPDATE_CODED_TRANS(e_trans_type, c_idx, update_type) ihevcd_update_num_trans_blocks(e_tran… argument 138 #define STATS_UPDATE_ALL_TRANS(e_trans_type, c_idx) ; argument 139 #define STATS_UPDATE_CODED_TRANS(e_trans_type, c_idx, update_type) ; argument
|
D | ihevcd_parse_residual.c | 183 WORD32 c_idx, in ihevcd_parse_residual_coding() argument 218 if(!c_idx) in ihevcd_parse_residual_coding() 240 if(!c_idx) in ihevcd_parse_residual_coding() 314 if((2 == log2_trafo_size) || ((3 == log2_trafo_size) && (0 == c_idx))) in ihevcd_parse_residual_coding() 410 if(!c_idx) in ihevcd_parse_residual_coding() 518 ctxt_idx += c_idx ? 2 : 0; in ihevcd_parse_residual_coding() 587 sig_ctxinc += (i && (!c_idx)) ? 3 : 0; in ihevcd_parse_residual_coding() 593 sig_coeff_base_ctxt = (0 == c_idx) ? IHEVC_CAB_COEFF_FLAG : in ihevcd_parse_residual_coding() 656 ctxt_set = (i && (!c_idx)) ? 2 : 0; in ihevcd_parse_residual_coding() 743 ctxt_idx += (!c_idx) ? ctxt_set : (ctxt_set + 4); in ihevcd_parse_residual_coding()
|
D | ihevcd_iquant_itrans_recon_ctb.c | 660 WORD32 num_comp, c_idx, func_idx; in ihevcd_iquant_itrans_recon_ctb() local 787 for(c_idx = 0; c_idx < num_comp; c_idx++) in ihevcd_iquant_itrans_recon_ctb() 795 if(c_idx == 0) /* Y */ in ihevcd_iquant_itrans_recon_ctb() 812 + c_idx; in ihevcd_iquant_itrans_recon_ctb() 880 + (!intra_flag) * 3 + c_idx; in ihevcd_iquant_itrans_recon_ctb() 955 if(c_idx == 0) in ihevcd_iquant_itrans_recon_ctb() 1063 STATS_UPDATE_ALL_TRANS(e_trans_type, c_idx); in ihevcd_iquant_itrans_recon_ctb() 1079 STATS_UPDATE_CODED_TRANS(e_trans_type, c_idx, 0); in ihevcd_iquant_itrans_recon_ctb() 1092 STATS_UPDATE_CODED_TRANS(e_trans_type, c_idx, 1); in ihevcd_iquant_itrans_recon_ctb() 1093 ps_codec->apf_itrans_recon_dc[c_idx](pu1_pred, pu1_dst, in ihevcd_iquant_itrans_recon_ctb() [all …]
|
D | ihevcd_parse_residual.h | 42 WORD32 c_idx,
|
D | ihevcd_parse_slice.c | 2045 WORD32 c_idx; in ihevcd_parse_sao() local 2047 for(c_idx = 0; c_idx < 3; c_idx++) in ihevcd_parse_sao() 2049 …if((ps_slice_hdr->i1_slice_sao_luma_flag && c_idx == 0) || (ps_slice_hdr->i1_slice_sao_chroma_flag… in ihevcd_parse_sao() 2055 if(c_idx == 0) in ihevcd_parse_sao() 2069 if(c_idx == 1) in ihevcd_parse_sao() 2124 if(c_idx == 0) in ihevcd_parse_sao() 2132 if(c_idx == 1) in ihevcd_parse_sao() 2142 if(0 == c_idx) in ihevcd_parse_sao() 2151 else if(1 == c_idx) in ihevcd_parse_sao()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | encodeframe.c | 819 int c_idx; in vp8_encode_frame() local 834 for (c_idx = 0; c_idx < MVvals; ++c_idx) { in vp8_encode_frame() 835 cpi->mb.MVcount[0][c_idx] += cpi->mb_row_ei[i].mb.MVcount[0][c_idx]; in vp8_encode_frame() 836 cpi->mb.MVcount[1][c_idx] += cpi->mb_row_ei[i].mb.MVcount[1][c_idx]; in vp8_encode_frame() 842 for (c_idx = 0; c_idx < MAX_REF_FRAMES; ++c_idx) { in vp8_encode_frame() 843 cpi->mb.count_mb_ref_frame_usage[c_idx] += in vp8_encode_frame() 844 cpi->mb_row_ei[i].mb.count_mb_ref_frame_usage[c_idx]; in vp8_encode_frame() 847 for (c_idx = 0; c_idx < MAX_ERROR_BINS; ++c_idx) { in vp8_encode_frame() 848 cpi->mb.error_bins[c_idx] += cpi->mb_row_ei[i].mb.error_bins[c_idx]; in vp8_encode_frame()
|