Home | History | Annotate | Download | only in common

Lines Matching defs:pu1_ref

92 *    Intra prediction interpolation filter for pu1_ref substitution
210 UWORD8 pu1_ref;
316 pu1_ref = pu1_dst[idx];
318 pu1_dst[i] = pu1_ref;
324 pu1_ref = pu1_dst[idx];
326 pu1_dst[i] = pu1_ref;
427 pu1_ref = pu1_dst[nbr_id_from_bl];
430 pu1_dst[i] = pu1_ref;
457 pu1_ref = pu1_dst[nbr_id_from_bl - 1];
458 ihevc_memset_mul_8(pu1_dst + nbr_id_from_bl, pu1_ref, 8);
536 pu1_ref = pu1_dst[nbr_id_from_bl];
538 pu1_dst[i] = pu1_ref;
563 pu1_ref = pu1_dst[nbr_id_from_bl - 1];
564 ihevc_memset_mul_8(&pu1_dst[nbr_id_from_bl], pu1_ref, 8);
696 * pointed by 'pu1_ref' to the TU block location pointed by 'pu1_dst' Refer
726 void ihevc_intra_pred_luma_planar(UWORD8 *pu1_ref,
765 * pu1_ref[two_nt - 1 - row]
766 + (col + 1) * pu1_ref[three_nt + 1]
767 + (nt - 1 - row) * pu1_ref[two_nt + 1 + col]
768 + (row + 1) * pu1_ref[nt - 1] + nt) >> (log2nt + 1);
782 * pointed by 'pu1_ref' to the TU block location pointed by 'pu1_dst' Refer
812 void ihevc_intra_pred_luma_dc(UWORD8 *pu1_ref,
851 acc_dc += pu1_ref[i];
854 acc_dc += pu1_ref[i];
871 pu1_dst[0] = ((pu1_ref[two_nt - 1] + two_dc_val + pu1_ref[two_nt + 1] + 2)
875 pu1_dst[col] = (pu1_ref[two_nt + 1 + col] + three_dc_val + 2) >> 2;
878 pu1_dst[row * dst_strd] = (pu1_ref[two_nt - 1 - row] + three_dc_val + 2)
898 * pointed by 'pu1_ref' to the TU block location pointed by 'pu1_dst' Refer
928 void ihevc_intra_pred_luma_horz(UWORD8 *pu1_ref,
947 pu1_dst[(row * dst_strd) + col] = pu1_ref[two_nt - 1 - row];
954 s2_predpixel = pu1_ref[two_nt - 1]
955 + ((pu1_ref[two_nt + 1 + col] - pu1_ref[two_nt]) >> 1);
962 pu1_dst[(row * dst_strd) + col] = pu1_ref[two_nt - 1 - row];
978 * pointed by 'pu1_ref' to the TU block location pointed by 'pu1_dst' Refer
1008 void ihevc_intra_pred_luma_ver(UWORD8 *pu1_ref,
1026 pu1_dst[(row * dst_strd) + col] = pu1_ref[two_nt + 1 + col];
1033 s2_predpixel = pu1_ref[two_nt + 1]
1034 + ((pu1_ref[two_nt - 1 - row] - pu1_ref[two_nt]) >> 1);
1041 pu1_dst[(row * dst_strd) + col] = pu1_ref[two_nt + 1 + col];
1056 * location pointed by 'pu1_ref' to the TU block location pointed by
1086 void ihevc_intra_pred_luma_mode2(UWORD8 *pu1_ref,
1106 pu1_dst[col + (row * dst_strd)] = pu1_ref[two_nt - row - idx - 1];
1120 * reference neighboring samples location pointed by 'pu1_ref' to the TU
1150 void ihevc_intra_pred_luma_mode_18_34(UWORD8 *pu1_ref,
1182 pu1_dst[col + (row * dst_strd)] = pu1_ref[two_nt + col + idx + 1];
1197 * reference neighboring samples location pointed by 'pu1_ref' to the TU
1227 void ihevc_intra_pred_luma_mode_3_to_9(UWORD8 *pu1_ref,
1257 * pu1_ref[ref_main_idx]
1258 + fract * pu1_ref[ref_main_idx - 1] + 16) >> 5);
1274 * with reference neighboring samples location pointed by 'pu1_ref' to the
1304 void ihevc_intra_pred_luma_mode_11_to_17(UWORD8 *pu1_ref,
1336 ref_temp[k + nt - 1] = pu1_ref[two_nt - k];
1347 ref_main[k] = pu1_ref[two_nt + (inv_ang_sum >> 8)];
1382 * reference neighboring samples location pointed by 'pu1_ref' to the TU
1412 void ihevc_intra_pred_luma_mode_19_to_25(UWORD8 *pu1_ref,
1436 ref_temp[k + nt - 1] = pu1_ref[two_nt + k];
1447 ref_main[k] = pu1_ref[two_nt - (inv_ang_sum >> 8)];
1480 * reference neighboring samples location pointed by 'pu1_ref' to the TU
1510 void ihevc_intra_pred_luma_mode_27_to_33(UWORD8 *pu1_ref,
1536 * pu1_ref[ref_main_idx]
1537 + fract * pu1_ref[ref_main_idx + 1] + 16) >> 5);