/external/libvpx/libvpx/vp8/common/ |
D | findnearmv.h | 37 } else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) { in vp8_clamp_mv2() 38 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv2() 49 int mb_to_right_edge, int mb_to_top_edge, in vp8_clamp_mv() argument 54 (mv->as_mv.col > mb_to_right_edge) ? mb_to_right_edge : mv->as_mv.col; in vp8_clamp_mv() 61 int mb_to_right_edge, in vp8_check_mv_bounds() argument 66 need_to_clamp |= (mv->as_mv.col > mb_to_right_edge); in vp8_check_mv_bounds()
|
D | reconinter.c | 269 } else if (mv->col > xd->mb_to_right_edge + (18 << 3)) { in clamp_mv_to_umv_border() 270 mv->col = xd->mb_to_right_edge + (16 << 3); in clamp_mv_to_umv_border() 285 mv->col = (2 * mv->col > xd->mb_to_right_edge + (18 << 3)) in clamp_uvmv_to_umv_border() 286 ? (xd->mb_to_right_edge + (16 << 3)) >> 1 in clamp_uvmv_to_umv_border()
|
D | blockd.h | 280 int mb_to_right_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 259 vp8_check_mv_bounds(&blockmv, mb_to_left_edge, mb_to_right_edge, in decode_split_mv() 384 int mb_to_right_edge; in read_mb_modes_mv() local 392 mb_to_right_edge = pbi->mb.mb_to_right_edge; in read_mb_modes_mv() 393 mb_to_right_edge += RIGHT_BOTTOM_MARGIN; in read_mb_modes_mv() 409 mvc, mb_to_left_edge, mb_to_right_edge, in read_mb_modes_mv() 426 vp8_check_mv_bounds(mbmi_mv, mb_to_left_edge, mb_to_right_edge, in read_mb_modes_mv() 533 pbi->mb.mb_to_right_edge = mb_to_right_edge_start; in vp8_decode_mode_mvs() 556 pbi->mb.mb_to_right_edge -= (16 << 3); in vp8_decode_mode_mvs()
|
D | error_concealment.c | 241 int mb_to_left_edge, int mb_to_right_edge, in estimate_mb_mvs() argument 256 int this_b_to_right_edge = mb_to_right_edge - ((col * 4) << 3); in estimate_mb_mvs() 323 int mb_to_right_edge = ((mb_cols - 1 - mb_col) * 16) << 3; in estimate_missing_mvs() local 331 estimate_mb_mvs(block_overlaps, mi, mb_to_left_edge, mb_to_right_edge, in estimate_missing_mvs() 428 int mb_to_right_edge = mb->mb_to_right_edge - ((col * 4) << 3); in interpolate_mvs() local 454 vp8_check_mv_bounds(mv, mb_to_left_edge, mb_to_right_edge, in interpolate_mvs()
|
D | threading.c | 373 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; in mt_decode_mb_rows()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_blockd.c | 56 num_4x4_w + (xd->mb_to_right_edge >= 0 in vp9_foreach_transformed_block_in_plane() 58 : xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in vp9_foreach_transformed_block_in_plane() 95 if (has_eob && xd->mb_to_right_edge < 0) { in vp9_set_contexts() 98 (xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in vp9_set_contexts()
|
D | vp9_mvref_common.h | 218 xd->mb_to_right_edge + MV_BORDER, xd->mb_to_top_edge - MV_BORDER, in clamp_mv_ref() 289 xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN, in clamp_mv2()
|
D | vp9_reconintra.c | 179 if (xd->mb_to_right_edge < 0) { in build_intra_predictors_high() 207 if (xd->mb_to_right_edge < 0) { in build_intra_predictors_high() 326 if (xd->mb_to_right_edge < 0) { in build_intra_predictors() 354 if (xd->mb_to_right_edge < 0) { in build_intra_predictors()
|
D | vp9_blockd.h | 172 int mb_to_right_edge; member
|
D | vp9_onyxc_int.h | 378 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8; in set_mi_row_col()
|
D | vp9_reconinter.c | 105 xd->mb_to_right_edge * (1 << (1 - ss_x)) + spel_right, in clamp_mv_to_umv_border_sb()
|
/external/libaom/libaom/av1/encoder/ |
D | aq_variance.c | 113 (xd->mb_to_right_edge < 0) ? ((-xd->mb_to_right_edge) >> 3) : 0; in av1_log_block_var()
|
D | reconinter_enc.c | 353 tmp_stride, xd->mb_to_right_edge }; in av1_build_prediction_by_above_preds() 360 xd->mb_to_right_edge = ctxt.mb_to_far_edge; in av1_build_prediction_by_above_preds() 403 xd->mb_to_right_edge += (this_width - pred_width) * 8; in av1_build_prediction_by_left_preds() 415 xd->mb_to_right_edge -= (this_width - pred_width) * 8; in av1_build_prediction_by_left_preds()
|
D | partition_strategy.h | 109 xd->mb_to_right_edge = ((cm->mi_cols - mi_width - mi_col) * MI_SIZE) * 8; in set_offsets_for_motion_search()
|
D | var_based_part.c | 490 if (xd->mb_to_right_edge < 0) pixels_wide += (xd->mb_to_right_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 | 148 xd->mb_to_right_edge = ((cm->mi_cols - 1 - mi_col) * MI_SIZE) * 8; in mode_estimation()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_aq_variance.c | 147 (xd->mb_to_right_edge < 0) ? ((-xd->mb_to_right_edge) >> 3) : 0; in block_variance()
|
/external/libaom/libaom/av1/common/ |
D | blockd.c | 40 if (has_eob && xd->mb_to_right_edge < 0) { in av1_set_contexts()
|
D | blockd.h | 512 int mb_to_right_edge; member 1092 const int block_cols = (xd->mb_to_right_edge >= 0) in av1_get_block_dimensions() 1094 : (xd->mb_to_right_edge >> 3) + block_width; in av1_get_block_dimensions()
|
D | onyxc_int.h | 831 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8; in set_mi_row_col() 1082 if (xd->mb_to_right_edge < 0) in max_block_wide() 1083 max_blocks_wide += xd->mb_to_right_edge >> (3 + pd->subsampling_x); in max_block_wide()
|
D | mvref_common.h | 54 xd->mb_to_right_edge + bw * 8 + MV_BORDER, in clamp_mv_ref()
|
D | reconinter.h | 242 xd->mb_to_right_edge * (1 << (1 - ss_x)) + spel_right, in clamp_mv_to_umv_border_sb()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 847 num_4x4_w + (xd->mb_to_right_edge >= 0 in predict_recon_inter() 849 : xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in predict_recon_inter() 855 xd->max_blocks_wide = xd->mb_to_right_edge >= 0 ? 0 : max_blocks_wide; in predict_recon_inter() 877 num_4x4_w + (xd->mb_to_right_edge >= 0 in predict_recon_intra() 879 : xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in predict_recon_intra() 885 xd->max_blocks_wide = xd->mb_to_right_edge >= 0 ? 0 : max_blocks_wide; in predict_recon_intra() 932 num_4x4_w + (xd->mb_to_right_edge >= 0 in decode_block() 934 : xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in decode_block() 940 xd->max_blocks_wide = xd->mb_to_right_edge >= 0 ? 0 : max_blocks_wide; in decode_block() 965 num_4x4_w + (xd->mb_to_right_edge >= 0 in decode_block() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | ethreading.c | 127 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3; in thread_encoding_proc()
|