/external/libvpx/libvpx/vp8/common/ |
D | findnearmv.h | 41 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN)) { in vp8_clamp_mv2() 42 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN; in vp8_clamp_mv2() 49 int mb_to_right_edge, int mb_to_top_edge, in vp8_clamp_mv() argument 56 (mv->as_mv.row < mb_to_top_edge) ? mb_to_top_edge : mv->as_mv.row; in vp8_clamp_mv() 62 int mb_to_top_edge, in vp8_check_mv_bounds() argument 67 need_to_clamp |= (mv->as_mv.row < mb_to_top_edge); in vp8_check_mv_bounds()
|
D | reconinter.c | 273 if (mv->row < (xd->mb_to_top_edge - (19 << 3))) { in clamp_mv_to_umv_border() 274 mv->row = xd->mb_to_top_edge - (16 << 3); in clamp_mv_to_umv_border() 289 mv->row = (2 * mv->row < (xd->mb_to_top_edge - (19 << 3))) in clamp_uvmv_to_umv_border() 290 ? (xd->mb_to_top_edge - (16 << 3)) >> 1 in clamp_uvmv_to_umv_border()
|
D | blockd.h | 281 int mb_to_top_edge; member
|
/external/libvpx/libvpx/vp8/decoder/ |
D | decodemv.c | 191 int mb_to_right_edge, int mb_to_top_edge, in decode_split_mv() argument 260 mb_to_top_edge, mb_to_bottom_edge); in decode_split_mv() 381 int mb_to_top_edge; in read_mb_modes_mv() local 388 mb_to_top_edge = pbi->mb.mb_to_top_edge; in read_mb_modes_mv() 390 mb_to_top_edge -= LEFT_TOP_MARGIN; in read_mb_modes_mv() 410 mb_to_top_edge, mb_to_bottom_edge); in read_mb_modes_mv() 427 mb_to_top_edge, mb_to_bottom_edge); in read_mb_modes_mv() 525 pbi->mb.mb_to_top_edge = 0; in vp8_decode_mode_mvs() 559 pbi->mb.mb_to_top_edge -= (16 << 3); in vp8_decode_mode_mvs()
|
D | error_concealment.c | 242 int mb_to_top_edge, int mb_to_bottom_edge) { in estimate_mb_mvs() argument 251 int this_b_to_top_edge = mb_to_top_edge + ((row * 4) << 3); in estimate_mb_mvs() 319 int mb_to_top_edge = -((mb_row * 16)) << 3; in estimate_missing_mvs() local 332 mb_to_top_edge, mb_to_bottom_edge); in estimate_missing_mvs() 424 int mb_to_top_edge = mb->mb_to_top_edge + ((row * 4) << 3); in interpolate_mvs() local 455 mb_to_top_edge, mb_to_bottom_edge); in interpolate_mvs()
|
D | threading.c | 322 xd->mb_to_top_edge = -((mb_row * 16) << 3); in mt_decode_mb_rows()
|
D | decodeframe.c | 503 xd->mb_to_top_edge = -((mb_row * 16) << 3); in decode_mb_rows()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_mvref_common.h | 218 xd->mb_to_right_edge + MV_BORDER, xd->mb_to_top_edge - MV_BORDER, in clamp_mv_ref() 290 xd->mb_to_top_edge - LEFT_TOP_MARGIN, in clamp_mv2()
|
D | vp9_reconinter.c | 106 xd->mb_to_top_edge * (1 << (1 - ss_y)) - spel_top, in clamp_mv_to_umv_border_sb() 160 const int y_start = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)); in build_inter_predictors()
|
D | vp9_reconintra.c | 150 y0 = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)) + y; in build_intra_predictors_high() 297 y0 = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)) + y; in build_intra_predictors()
|
D | vp9_blockd.h | 173 int mb_to_top_edge; member
|
D | vp9_onyxc_int.h | 375 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); in set_mi_row_col()
|
/external/libaom/libaom/av1/encoder/ |
D | partition_strategy.h | 106 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); in set_offsets_for_motion_search()
|
D | tpl_model.c | 145 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); in mode_estimation()
|
D | reconinter_enc.c | 414 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); in av1_build_prediction_by_left_preds()
|
/external/libaom/libaom/av1/common/ |
D | pred_common.c | 75 const int row = -xd->mb_to_top_edge >> 3; in av1_get_palette_cache()
|
D | mvref_common.h | 55 xd->mb_to_top_edge - bh * 8 - MV_BORDER, in clamp_mv_ref()
|
D | reconinter.h | 243 xd->mb_to_top_edge * (1 << (1 - ss_y)) - spel_top, in clamp_mv_to_umv_border_sb()
|
D | blockd.h | 513 int mb_to_top_edge; member
|
D | onyxc_int.h | 828 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); in set_mi_row_col()
|
D | reconinter.c | 974 xd->mb_to_top_edge = 8 * MI_SIZE * (-left_mi_row); in av1_setup_build_prediction_by_left_pred()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | rdopt.c | 1391 mb_offset = (-xd->mb_to_top_edge / 128 + 1) * (xd->mode_info_stride + 1) + in vp8_mv_pred() 1497 if (xd->mb_to_top_edge == 0 && xd->mb_to_left_edge == 0) { in vp8_cal_sad() 1499 } else if (xd->mb_to_top_edge == in vp8_cal_sad() 1527 if (xd->mb_to_top_edge == 0) near_sad[4] = INT_MAX; in vp8_cal_sad()
|
D | ethreading.c | 128 xd->mb_to_top_edge = -((mb_row * 16) << 3); in thread_encoding_proc()
|
D | encodeframe.c | 375 xd->mb_to_top_edge = -((mb_row * 16) << 3); in encode_mb_row()
|
D | bitstream.c | 461 xd->mb_to_top_edge = -((mb_row * 16) << 3); in pack_inter_mode_mvs()
|