/external/libvpx/libvpx/vp8/common/ |
D | findnearmv.h | 42 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) in vp8_clamp_mv2() 43 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv2() 52 int mb_to_right_edge, int mb_to_top_edge, in vp8_clamp_mv() argument 57 mv->as_mv.col = (mv->as_mv.col > mb_to_right_edge) ? in vp8_clamp_mv() 58 mb_to_right_edge : mv->as_mv.col; in vp8_clamp_mv() 65 int mb_to_right_edge, in vp8_check_mv_bounds() argument 71 need_to_clamp |= (mv->as_mv.col > mb_to_right_edge); in vp8_check_mv_bounds()
|
D | reconinter.c | 310 else if (mv->col > xd->mb_to_right_edge + (18 << 3)) in clamp_mv_to_umv_border() 311 mv->col = xd->mb_to_right_edge + (16 << 3); in clamp_mv_to_umv_border() 324 mv->col = (2*mv->col > xd->mb_to_right_edge + (18 << 3)) ? in clamp_uvmv_to_umv_border() 325 (xd->mb_to_right_edge + (16 << 3)) >> 1 : mv->col; in clamp_uvmv_to_umv_border()
|
D | blockd.h | 280 int mb_to_right_edge; member
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_blockd.c | 58 const int max_blocks_wide = num_4x4_w + (xd->mb_to_right_edge >= 0 ? 0 : in vp9_foreach_transformed_block_in_plane() 59 xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in vp9_foreach_transformed_block_in_plane() 94 if (has_eob && xd->mb_to_right_edge < 0) { in vp9_set_contexts() 97 (xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in vp9_set_contexts()
|
D | vp9_mvref_common.h | 130 xd->mb_to_right_edge + MV_BORDER, in clamp_mv_ref() 205 xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN, in clamp_mv2()
|
D | vp9_reconintra.c | 184 if (xd->mb_to_right_edge < 0) { in build_intra_predictors_high() 308 if (xd->mb_to_right_edge < 0) { in build_intra_predictors() 336 if (xd->mb_to_right_edge < 0) { in build_intra_predictors()
|
D | vp9_blockd.h | 173 int mb_to_right_edge; member
|
D | vp9_onyxc_int.h | 404 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8; in set_mi_row_col()
|
D | vp9_reconinter.c | 126 xd->mb_to_right_edge * (1 << (1 - ss_x)) + spel_right, in clamp_mv_to_umv_border_sb()
|
/external/libvpx/libvpx/vp8/decoder/ |
D | decodemv.c | 234 int mb_to_right_edge, int mb_to_top_edge, in decode_split_mv() argument 313 mb_to_right_edge, in decode_split_mv() 456 int mb_to_right_edge; in read_mb_modes_mv() local 464 mb_to_right_edge = pbi->mb.mb_to_right_edge; in read_mb_modes_mv() 465 mb_to_right_edge += RIGHT_BOTTOM_MARGIN; in read_mb_modes_mv() 485 mb_to_right_edge, in read_mb_modes_mv() 506 mb_to_right_edge, in read_mb_modes_mv() 637 pbi->mb.mb_to_right_edge = mb_to_right_edge_start; in vp8_decode_mode_mvs() 662 pbi->mb.mb_to_right_edge -= (16 << 3); in vp8_decode_mode_mvs()
|
D | error_concealment.c | 283 int mb_to_right_edge, in estimate_mb_mvs() argument 302 int this_b_to_right_edge = mb_to_right_edge - ((col*4)<<3); in estimate_mb_mvs() 387 int mb_to_right_edge = ((mb_cols - 1 - mb_col) * 16) << 3; in estimate_missing_mvs() local 398 mb_to_right_edge, in estimate_missing_mvs() 520 int mb_to_right_edge = mb->mb_to_right_edge - ((col*4)<<3); in interpolate_mvs() local 551 mb_to_right_edge, in interpolate_mvs()
|
D | threading.c | 426 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; in mt_decode_mb_rows()
|
D | decodeframe.c | 606 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; in decode_mb_rows()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_aq_variance.c | 145 int right_overflow = (xd->mb_to_right_edge < 0) ? in block_variance() 146 ((-xd->mb_to_right_edge) >> 3) : 0; in block_variance()
|
D | vp9_pickmode.c | 590 const int max_blocks_wide = num_4x4_w + (xd->mb_to_right_edge >= 0 ? 0 : in block_yrd() 591 xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in block_yrd()
|
D | vp9_encodeframe.c | 691 if (xd->mb_to_right_edge < 0) in choose_partitioning() 692 pixels_wide += (xd->mb_to_right_edge >> 3); in choose_partitioning() 1036 if ((xd->mb_to_right_edge >> (3 + MI_SIZE_LOG2)) + mi_width > x_idx in update_state()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_detokenize.c | 219 if (has_eob && xd->mb_to_right_edge < 0) { in dec_set_contexts() 222 (xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in dec_set_contexts()
|
D | vp9_decodeframe.c | 854 const int max_blocks_wide = num_4x4_w + (xd->mb_to_right_edge >= 0 ? in decode_block() 855 0 : xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in decode_block() 882 const int max_blocks_wide = num_4x4_w + (xd->mb_to_right_edge >= 0 ? in decode_block() 883 0 : xd->mb_to_right_edge >> (5 + pd->subsampling_x)); in decode_block()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | ethreading.c | 136 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3; in thread_encoding_proc()
|
D | encodeframe.c | 443 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3; in encode_mb_row()
|
D | bitstream.c | 580 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; in pack_inter_mode_mvs()
|
D | rdopt.c | 1715 if(xd->mb_to_right_edge ==0) near_sad[6] = INT_MAX; in vp8_cal_sad()
|