Searched refs:dst_buf1 (Results 1 – 2 of 2) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | reconinter_enc.c | 219 uint8_t *dst_buf1[MAX_MB_PLANE], *dst_buf2[MAX_MB_PLANE]; in av1_build_obmc_inter_predictors_sb() local 229 dst_buf1[0] = CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[0]); in av1_build_obmc_inter_predictors_sb() 230 dst_buf1[1] = in av1_build_obmc_inter_predictors_sb() 232 dst_buf1[2] = in av1_build_obmc_inter_predictors_sb() 240 dst_buf1[0] = xd->tmp_obmc_bufs[0]; in av1_build_obmc_inter_predictors_sb() 241 dst_buf1[1] = xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE; in av1_build_obmc_inter_predictors_sb() 242 dst_buf1[2] = xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE * 2; in av1_build_obmc_inter_predictors_sb() 250 av1_build_prediction_by_above_preds(cm, xd, dst_buf1, dst_width1, dst_height1, in av1_build_obmc_inter_predictors_sb() 256 av1_build_obmc_inter_prediction(cm, xd, dst_buf1, dst_stride1, dst_buf2, in av1_build_obmc_inter_predictors_sb()
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 788 static void set_dst_buf(MACROBLOCKD *xd, uint8_t **dst_buf1, in set_dst_buf() argument 790 dst_buf1[0] = xd->tmp_obmc_bufs[0]; in set_dst_buf() 791 dst_buf1[1] = xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE; in set_dst_buf() 792 dst_buf1[2] = xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE * 2; in set_dst_buf() 799 static void set_dst_buf_highbd(MACROBLOCKD *xd, uint8_t **dst_buf1, in set_dst_buf_highbd() argument 802 dst_buf1[0] = CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[0]); in set_dst_buf_highbd() 803 dst_buf1[1] = CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE * len); in set_dst_buf_highbd() 804 dst_buf1[2] = in set_dst_buf_highbd() 816 uint8_t *dst_buf1[MAX_MB_PLANE], *dst_buf2[MAX_MB_PLANE]; in dec_build_obmc_inter_predictors_sb() local 826 set_dst_buf_highbd(xd, dst_buf1, dst_buf2); in dec_build_obmc_inter_predictors_sb() [all …]
|