Home
last modified time | relevance | path

Searched refs:nbr_id_from_bl (Results 1 – 5 of 5) sorted by relevance

/external/libhevc/common/arm/
Dihevc_intra_ref_substitution_a9q.c119 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_chroma_ref_substitution_a9q() local
267nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 4; /* for bottom left and left */ in ihevc_intra_pred_chroma_ref_substitution_a9q()
268 if(nbr_id_from_bl == 32) in ihevc_intra_pred_chroma_ref_substitution_a9q()
269 nbr_id_from_bl = 16; in ihevc_intra_pred_chroma_ref_substitution_a9q()
270 if(nbr_id_from_bl == 16) in ihevc_intra_pred_chroma_ref_substitution_a9q()
275 nbr_id_from_bl++; in ihevc_intra_pred_chroma_ref_substitution_a9q()
276nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 4; /* top and top right; … in ihevc_intra_pred_chroma_ref_substitution_a9q()
281 if(nbr_id_from_bl) in ihevc_intra_pred_chroma_ref_substitution_a9q()
284 pu1_ref_u = pu1_dst[2 * nbr_id_from_bl]; in ihevc_intra_pred_chroma_ref_substitution_a9q()
285 pu1_ref_v = pu1_dst[(2 * nbr_id_from_bl) + 1]; in ihevc_intra_pred_chroma_ref_substitution_a9q()
[all …]
Dihevc_intra_pred_filters_neon_intr.c134 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_luma_ref_substitution_neonintr() local
305nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 8; /* for below left and left */ in ihevc_intra_pred_luma_ref_substitution_neonintr()
307 if(nbr_id_from_bl == 64) in ihevc_intra_pred_luma_ref_substitution_neonintr()
308 nbr_id_from_bl = 32; in ihevc_intra_pred_luma_ref_substitution_neonintr()
310 if(nbr_id_from_bl == 32) in ihevc_intra_pred_luma_ref_substitution_neonintr()
315 nbr_id_from_bl++; in ihevc_intra_pred_luma_ref_substitution_neonintr()
316nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; … in ihevc_intra_pred_luma_ref_substitution_neonintr()
320 if(nbr_id_from_bl) in ihevc_intra_pred_luma_ref_substitution_neonintr()
323 pu1_ref = pu1_dst[nbr_id_from_bl]; in ihevc_intra_pred_luma_ref_substitution_neonintr()
324 for(i = (nbr_id_from_bl - 1); i >= 0; i--) in ihevc_intra_pred_luma_ref_substitution_neonintr()
[all …]
/external/libhevc/common/
Dihevc_chroma_intra_pred_filters.c150 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_chroma_ref_substitution() local
298nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 4; /* for bottom left and left */ in ihevc_intra_pred_chroma_ref_substitution()
299 if(nbr_id_from_bl == 32) in ihevc_intra_pred_chroma_ref_substitution()
300 nbr_id_from_bl = 16; in ihevc_intra_pred_chroma_ref_substitution()
301 if(nbr_id_from_bl == 16) in ihevc_intra_pred_chroma_ref_substitution()
306 nbr_id_from_bl++; in ihevc_intra_pred_chroma_ref_substitution()
307nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 4; /* top and top right; … in ihevc_intra_pred_chroma_ref_substitution()
312 if(nbr_id_from_bl) in ihevc_intra_pred_chroma_ref_substitution()
315 pu1_ref_u = pu1_dst[2 * nbr_id_from_bl]; in ihevc_intra_pred_chroma_ref_substitution()
316 pu1_ref_v = pu1_dst[(2 * nbr_id_from_bl) + 1]; in ihevc_intra_pred_chroma_ref_substitution()
[all …]
Dihevc_intra_pred_filters.c220 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_luma_ref_substitution() local
408nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 8; /* for below left and left */ in ihevc_intra_pred_luma_ref_substitution()
410 if(nbr_id_from_bl == 64) in ihevc_intra_pred_luma_ref_substitution()
411 nbr_id_from_bl = 32; in ihevc_intra_pred_luma_ref_substitution()
413 if(nbr_id_from_bl == 32) in ihevc_intra_pred_luma_ref_substitution()
418 nbr_id_from_bl++; in ihevc_intra_pred_luma_ref_substitution()
419nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; … in ihevc_intra_pred_luma_ref_substitution()
424 if(nbr_id_from_bl) in ihevc_intra_pred_luma_ref_substitution()
427 pu1_ref = pu1_dst[nbr_id_from_bl]; in ihevc_intra_pred_luma_ref_substitution()
428 for(i = (nbr_id_from_bl - 1); i >= 0; i--) in ihevc_intra_pred_luma_ref_substitution()
[all …]
/external/libhevc/common/x86/
Dihevc_intra_pred_filters_ssse3_intr.c152 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_luma_ref_substitution_ssse3() local
253nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 8; /* for below left and left */ in ihevc_intra_pred_luma_ref_substitution_ssse3()
255 if(nbr_id_from_bl == 64) in ihevc_intra_pred_luma_ref_substitution_ssse3()
256 nbr_id_from_bl = 32; in ihevc_intra_pred_luma_ref_substitution_ssse3()
258 if(nbr_id_from_bl == 32) in ihevc_intra_pred_luma_ref_substitution_ssse3()
263 nbr_id_from_bl++; in ihevc_intra_pred_luma_ref_substitution_ssse3()
264nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; … in ihevc_intra_pred_luma_ref_substitution_ssse3()
269 if(nbr_id_from_bl) in ihevc_intra_pred_luma_ref_substitution_ssse3()
272 pu1_ref = pu1_dst[nbr_id_from_bl]; in ihevc_intra_pred_luma_ref_substitution_ssse3()
273 for(i = (nbr_id_from_bl - 1); i >= 0; i--) in ihevc_intra_pred_luma_ref_substitution_ssse3()
[all …]