/external/libvpx/libvpx/vp8/common/ |
D | findnearmv.h | 43 } else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN) { in vp8_clamp_mv2() 44 mv->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv2() 50 int mb_to_bottom_edge) { in vp8_clamp_mv() argument 58 (mv->as_mv.row > mb_to_bottom_edge) ? mb_to_bottom_edge : mv->as_mv.row; in vp8_clamp_mv() 63 int mb_to_bottom_edge) { in vp8_check_mv_bounds() argument 68 need_to_clamp |= (mv->as_mv.row > mb_to_bottom_edge); in vp8_check_mv_bounds()
|
D | reconinter.c | 275 } else if (mv->row > xd->mb_to_bottom_edge + (18 << 3)) { in clamp_mv_to_umv_border() 276 mv->row = xd->mb_to_bottom_edge + (16 << 3); in clamp_mv_to_umv_border() 292 mv->row = (2 * mv->row > xd->mb_to_bottom_edge + (18 << 3)) in clamp_uvmv_to_umv_border() 293 ? (xd->mb_to_bottom_edge + (16 << 3)) >> 1 in clamp_uvmv_to_umv_border()
|
D | blockd.h | 282 int mb_to_bottom_edge; member
|
/external/libvpx/libvpx/vp8/decoder/ |
D | decodemv.c | 192 int mb_to_bottom_edge) { in decode_split_mv() argument 260 mb_to_top_edge, mb_to_bottom_edge); in decode_split_mv() 382 int mb_to_bottom_edge; in read_mb_modes_mv() local 389 mb_to_bottom_edge = pbi->mb.mb_to_bottom_edge; in read_mb_modes_mv() 391 mb_to_bottom_edge += RIGHT_BOTTOM_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() 526 pbi->mb.mb_to_bottom_edge = ((pbi->common.mb_rows - 1) * 16) << 3; in vp8_decode_mode_mvs() 560 pbi->mb.mb_to_bottom_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 252 int this_b_to_bottom_edge = mb_to_bottom_edge - ((row * 4) << 3); in estimate_mb_mvs() 320 int mb_to_bottom_edge = ((mb_rows - 1 - mb_row) * 16) << 3; in estimate_missing_mvs() local 332 mb_to_top_edge, mb_to_bottom_edge); in estimate_missing_mvs() 425 int mb_to_bottom_edge = mb->mb_to_bottom_edge - ((row * 4) << 3); in interpolate_mvs() local 455 mb_to_top_edge, mb_to_bottom_edge); in interpolate_mvs()
|
D | threading.c | 323 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3; in mt_decode_mb_rows()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_blockd.c | 60 num_4x4_h + (xd->mb_to_bottom_edge >= 0 in vp9_foreach_transformed_block_in_plane() 62 : xd->mb_to_bottom_edge >> (5 + pd->subsampling_y)); in vp9_foreach_transformed_block_in_plane() 110 if (has_eob && xd->mb_to_bottom_edge < 0) { in vp9_set_contexts() 113 (xd->mb_to_bottom_edge >> (5 + pd->subsampling_y)); in vp9_set_contexts()
|
D | vp9_mvref_common.h | 219 xd->mb_to_bottom_edge + MV_BORDER); in clamp_mv_ref() 291 xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN); in clamp_mv2()
|
D | vp9_reconintra.c | 155 if (xd->mb_to_bottom_edge < 0) { in build_intra_predictors_high() 302 if (xd->mb_to_bottom_edge < 0) { in build_intra_predictors()
|
D | vp9_blockd.h | 174 int mb_to_bottom_edge; member
|
D | vp9_onyxc_int.h | 376 xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8; in set_mi_row_col()
|
D | vp9_reconinter.c | 107 xd->mb_to_bottom_edge * (1 << (1 - ss_y)) + spel_bottom); in clamp_mv_to_umv_border_sb()
|
/external/libaom/libaom/av1/encoder/ |
D | aq_variance.c | 115 (xd->mb_to_bottom_edge < 0) ? ((-xd->mb_to_bottom_edge) >> 3) : 0; in av1_log_block_var()
|
D | reconinter_enc.c | 348 xd->mb_to_bottom_edge += (this_height - pred_height) * 8; in av1_build_prediction_by_above_preds() 361 xd->mb_to_bottom_edge -= (this_height - pred_height) * 8; in av1_build_prediction_by_above_preds() 408 tmp_stride, xd->mb_to_bottom_edge }; in av1_build_prediction_by_left_preds() 416 xd->mb_to_bottom_edge = ctxt.mb_to_far_edge; in av1_build_prediction_by_left_preds()
|
D | partition_strategy.h | 107 xd->mb_to_bottom_edge = ((cm->mi_rows - mi_height - mi_row) * MI_SIZE) * 8; in set_offsets_for_motion_search()
|
D | var_based_part.c | 491 if (xd->mb_to_bottom_edge < 0) pixels_high += (xd->mb_to_bottom_edge >> 3); in av1_choose_var_based_partitioning() 515 if (xd->mb_to_right_edge >= 0 && xd->mb_to_bottom_edge >= 0) { in av1_choose_var_based_partitioning()
|
D | tpl_model.c | 146 xd->mb_to_bottom_edge = ((cm->mi_rows - 1 - mi_row) * MI_SIZE) * 8; in mode_estimation()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_aq_variance.c | 149 (xd->mb_to_bottom_edge < 0) ? ((-xd->mb_to_bottom_edge) >> 3) : 0; in block_variance()
|
/external/libaom/libaom/av1/common/ |
D | blockd.c | 50 if (has_eob && xd->mb_to_bottom_edge < 0) { in av1_set_contexts()
|
D | blockd.h | 514 int mb_to_bottom_edge; member 1089 const int block_rows = (xd->mb_to_bottom_edge >= 0) in av1_get_block_dimensions() 1091 : (xd->mb_to_bottom_edge >> 3) + block_height; in av1_get_block_dimensions()
|
D | onyxc_int.h | 829 xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8; in set_mi_row_col() 1094 if (xd->mb_to_bottom_edge < 0) in max_block_high() 1095 max_blocks_high += xd->mb_to_bottom_edge >> (3 + pd->subsampling_y); in max_block_high()
|
D | mvref_common.h | 56 xd->mb_to_bottom_edge + bh * 8 + MV_BORDER); in clamp_mv_ref()
|
D | reconinter.h | 244 xd->mb_to_bottom_edge * (1 << (1 - ss_y)) + spel_bottom); in clamp_mv_to_umv_border_sb()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 851 num_4x4_h + (xd->mb_to_bottom_edge >= 0 in predict_recon_inter() 853 : xd->mb_to_bottom_edge >> (5 + pd->subsampling_y)); in predict_recon_inter() 856 xd->max_blocks_high = xd->mb_to_bottom_edge >= 0 ? 0 : max_blocks_high; in predict_recon_inter() 881 num_4x4_h + (xd->mb_to_bottom_edge >= 0 in predict_recon_intra() 883 : xd->mb_to_bottom_edge >> (5 + pd->subsampling_y)); in predict_recon_intra() 886 xd->max_blocks_high = xd->mb_to_bottom_edge >= 0 ? 0 : max_blocks_high; in predict_recon_intra() 936 num_4x4_h + (xd->mb_to_bottom_edge >= 0 in decode_block() 938 : xd->mb_to_bottom_edge >> (5 + pd->subsampling_y)); in decode_block() 941 xd->max_blocks_high = xd->mb_to_bottom_edge >= 0 ? 0 : max_blocks_high; in decode_block() 970 (xd->mb_to_bottom_edge >= 0 in decode_block() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | ethreading.c | 129 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3; in thread_encoding_proc()
|