Home
last modified time | relevance | path

Searched refs:nbr_flags (Results 1 – 12 of 12) sorted by relevance

/external/libhevc/common/arm/
Dihevc_intra_ref_substitution_a9q.c109 WORD32 nbr_flags, in ihevc_intra_pred_chroma_ref_substitution_a9q() argument
126 if(nbr_flags == 0) in ihevc_intra_pred_chroma_ref_substitution_a9q()
141 tp_left = (nbr_flags & 0x10000); in ihevc_intra_pred_chroma_ref_substitution_a9q()
142 tp_right = (nbr_flags & 0x0f000); in ihevc_intra_pred_chroma_ref_substitution_a9q()
143 top = (nbr_flags & 0x00f00); in ihevc_intra_pred_chroma_ref_substitution_a9q()
144 left = (nbr_flags & 0x000f0); in ihevc_intra_pred_chroma_ref_substitution_a9q()
145 bot_left = (nbr_flags & 0x0000f); in ihevc_intra_pred_chroma_ref_substitution_a9q()
191 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_chroma_ref_substitution_a9q()
192 bot_left = (nbr_flags & 0x8) >> 3; in ihevc_intra_pred_chroma_ref_substitution_a9q()
193 left = (nbr_flags & 0x80) >> 7; in ihevc_intra_pred_chroma_ref_substitution_a9q()
[all …]
Dihevc_intra_pred_filters_neon_intr.c122 WORD32 nbr_flags, in ihevc_intra_pred_luma_ref_substitution_neonintr() argument
144 if(nbr_flags == 0) in ihevc_intra_pred_luma_ref_substitution_neonintr()
174 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_luma_ref_substitution_neonintr()
175 bot_left = nbr_flags & 0x1; in ihevc_intra_pred_luma_ref_substitution_neonintr()
176 left = (nbr_flags & 0x10) >> 4; in ihevc_intra_pred_luma_ref_substitution_neonintr()
177 top = (nbr_flags & 0x100) >> 8; in ihevc_intra_pred_luma_ref_substitution_neonintr()
178 tp_right = (nbr_flags & 0x1000) >> 12; in ihevc_intra_pred_luma_ref_substitution_neonintr()
297 nbr_flags_temp = (nbr_flags & 0x3) + ((nbr_flags & 0x30) >> 2) in ihevc_intra_pred_luma_ref_substitution_neonintr()
298 + ((nbr_flags & 0x300) >> 4) in ihevc_intra_pred_luma_ref_substitution_neonintr()
299 + ((nbr_flags & 0x3000) >> 6) in ihevc_intra_pred_luma_ref_substitution_neonintr()
[all …]
/external/libhevc/common/
Dihevc_intra_pred_filters.c132 WORD32 nbr_flags, in ihevc_intra_pred_luma_ref_subst_all_avlble() argument
139 UNUSED(nbr_flags); in ihevc_intra_pred_luma_ref_subst_all_avlble()
147 ASSERT((nbr_flags == 0x11188) || (nbr_flags == 0x133CC) || (nbr_flags == 0x1FFFF)); in ihevc_intra_pred_luma_ref_subst_all_avlble()
206 WORD32 nbr_flags, in ihevc_intra_pred_luma_ref_substitution() argument
232 if(nbr_flags == 0) in ihevc_intra_pred_luma_ref_substitution()
244 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_luma_ref_substitution()
245 bot_left = (nbr_flags & 0x8) >> 3; in ihevc_intra_pred_luma_ref_substitution()
246 left = (nbr_flags & 0x80) >> 7; in ihevc_intra_pred_luma_ref_substitution()
247 top = (nbr_flags & 0x100) >> 8; in ihevc_intra_pred_luma_ref_substitution()
248 tp_right = (nbr_flags & 0x1000) >> 12; in ihevc_intra_pred_luma_ref_substitution()
[all …]
Dihevc_chroma_intra_pred_filters.c140 WORD32 nbr_flags, in ihevc_intra_pred_chroma_ref_substitution() argument
157 if(nbr_flags == 0) in ihevc_intra_pred_chroma_ref_substitution()
172 tp_left = (nbr_flags & 0x10000); in ihevc_intra_pred_chroma_ref_substitution()
173 tp_right = (nbr_flags & 0x0f000); in ihevc_intra_pred_chroma_ref_substitution()
174 top = (nbr_flags & 0x00f00); in ihevc_intra_pred_chroma_ref_substitution()
175 left = (nbr_flags & 0x000f0); in ihevc_intra_pred_chroma_ref_substitution()
176 bot_left = (nbr_flags & 0x0000f); in ihevc_intra_pred_chroma_ref_substitution()
222 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_chroma_ref_substitution()
223 bot_left = (nbr_flags & 0x8) >> 3; in ihevc_intra_pred_chroma_ref_substitution()
224 left = (nbr_flags & 0x80) >> 7; in ihevc_intra_pred_chroma_ref_substitution()
[all …]
Dihevc_intra_pred.h142 WORD32 nbr_flags,
152 WORD32 nbr_flags,
266 WORD32 nbr_flags,
Dihevc_chroma_intra_pred.h127 WORD32 nbr_flags,
226 WORD32 nbr_flags,
/external/libhevc/encoder/
Dihevce_decomp_pre_intra_pass.c133 WORD32 *nbr_flags,
496 WORD32 nbr_flags, nbr_flags_TR; in ihevce_ed_calc_8x8_blk() local
514 nbr_flags = nbr_flags_ptr[0]; in ihevce_ed_calc_8x8_blk()
519 SET_TR_AVAILABLE(nbr_flags); in ihevce_ed_calc_8x8_blk()
523 SET_TR_UNAVAILABLE(nbr_flags); in ihevce_ed_calc_8x8_blk()
526 if(CHECK_BL_AVAILABLE(nbr_flags)) in ihevce_ed_calc_8x8_blk()
528 SET_BL_AVAILABLE(nbr_flags); in ihevce_ed_calc_8x8_blk()
532 SET_BL_UNAVAILABLE(nbr_flags); in ihevce_ed_calc_8x8_blk()
542 nbr_flags, in ihevce_ed_calc_8x8_blk()
555 nbr_flags = nbr_flags_ptr[i * 8 + j]; in ihevce_ed_calc_8x8_blk()
[all …]
Dihevce_ipe_pass.c808 WORD32 nbr_flags; in ihevce_ipe_process_row() local
874 nbr_flags = 0; in ihevce_ipe_process_row()
878 nbr_flags |= LEFT_FLAG; /* Set Left Flag if not in first column */ in ihevce_ipe_process_row()
889 nbr_flags |= TOP_LEFT_FLAG; /* Set Top-Left Flag if not in first row or first column */ in ihevce_ipe_process_row()
893 nbr_flags |= TOP_FLAG; /* Set Top Flag if not in first row */ in ihevce_ipe_process_row()
913 nbr_flags |= in ihevce_ipe_process_row()
924 ps_ctb_node->i4_nbr_flag = nbr_flags; in ihevce_ipe_process_row()
Dihevce_enc_loop_utils.c2748 WORD32 nbr_flags; in ihevce_mpm_idx_based_filter_RDOPT_cand() local
2758 nbr_flags = ihevce_get_nbr_intra( in ihevce_mpm_idx_based_filter_RDOPT_cand()
2765 (void)nbr_flags; in ihevce_mpm_idx_based_filter_RDOPT_cand()
3121 WORD32 nbr_flags; in ihevce_intra_rdopt_cu_ntu() local
3152 nbr_flags = ihevce_get_nbr_intra( in ihevce_intra_rdopt_cu_ntu()
3163 *pu4_nbr_flags = nbr_flags; in ihevce_intra_rdopt_cu_ntu()
3199 nbr_flags, in ihevce_intra_rdopt_cu_ntu()
6317 WORD32 nbr_flags; in ihevce_distortion_based_intra_chroma_mode_selector() local
6327 nbr_flags = ihevce_get_intra_chroma_tu_nbr( in ihevce_distortion_based_intra_chroma_mode_selector()
6337 nbr_flags, in ihevce_distortion_based_intra_chroma_mode_selector()
[all …]
Dihevce_recur_bracketing.c525 WORD32 nbr_flags; in ihevce_pu_calc_8x8_blk() local
556 nbr_flags = ihevce_get_nbr_intra( in ihevce_pu_calc_8x8_blk()
590 nbr_flags, in ihevce_pu_calc_8x8_blk()
3054 WORD32 nbr_flags; in ihevce_mode_eval_filtering() local
3141 nbr_flags = ihevce_get_nbr_intra( in ihevce_mode_eval_filtering()
3158 nbr_flags, in ihevce_mode_eval_filtering()
/external/libhevc/decoder/
Dihevcd_iquant_itrans_recon_ctb.c360 WORD32 nbr_flags; in ihevcd_get_intra_nbr_flag() local
522nbr_flags = (top_left << 16) | (top_right << 12) | (top << 8) | (gau4_ihevcd_4_bit_reverse[left] <… in ihevcd_get_intra_nbr_flag()
526 return nbr_flags; in ihevcd_get_intra_nbr_flag()
/external/libhevc/common/x86/
Dihevc_intra_pred_filters_ssse3_intr.c138 WORD32 nbr_flags, in ihevc_intra_pred_luma_ref_substitution_ssse3() argument
164 if(nbr_flags == 0) in ihevc_intra_pred_luma_ref_substitution_ssse3()
183 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_luma_ref_substitution_ssse3()
184 bot_left = (nbr_flags & 0x8) >> 3; in ihevc_intra_pred_luma_ref_substitution_ssse3()
185 left = (nbr_flags & 0x80) >> 7; in ihevc_intra_pred_luma_ref_substitution_ssse3()
186 top = (nbr_flags & 0x100) >> 8; in ihevc_intra_pred_luma_ref_substitution_ssse3()
187 tp_right = (nbr_flags & 0x1000) >> 12; in ihevc_intra_pred_luma_ref_substitution_ssse3()
245 nbr_flags_temp = ((nbr_flags & 0xC) >> 2) + ((nbr_flags & 0xC0) >> 4) in ihevc_intra_pred_luma_ref_substitution_ssse3()
246 + ((nbr_flags & 0x300) >> 4) in ihevc_intra_pred_luma_ref_substitution_ssse3()
247 + ((nbr_flags & 0x3000) >> 6) in ihevc_intra_pred_luma_ref_substitution_ssse3()
[all …]