Home
last modified time | relevance | path

Searched refs:mb_to_bottom_edge (Results 1 – 20 of 20) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Dfindnearmv.h46 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN) in vp8_clamp_mv2()
47 mv->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv2()
51 int mb_to_top_edge, int mb_to_bottom_edge) in vp8_clamp_mv() argument
59 mv->as_mv.row = (mv->as_mv.row > mb_to_bottom_edge) ? in vp8_clamp_mv()
60 mb_to_bottom_edge : mv->as_mv.row; in vp8_clamp_mv()
64 int mb_to_bottom_edge) in vp8_check_mv_bounds() argument
70 need_to_clamp |= (mv->as_mv.row > mb_to_bottom_edge); in vp8_check_mv_bounds()
Dreconinter.c358 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3)) in clamp_mv_to_umv_border()
359 mv->row = xd->mb_to_bottom_edge + (16 << 3); in clamp_mv_to_umv_border()
372 mv->row = (2*mv->row > xd->mb_to_bottom_edge + (18 << 3)) ? in clamp_uvmv_to_umv_border()
373 (xd->mb_to_bottom_edge + (16 << 3)) >> 1 : mv->row; in clamp_uvmv_to_umv_border()
Dblockd.h278 int mb_to_bottom_edge; member
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_blockd.c58 if (xd->mb_to_right_edge < 0 || xd->mb_to_bottom_edge < 0) { in vp9_foreach_transformed_block_in_plane()
69 if (xd->mb_to_bottom_edge < 0) in vp9_foreach_transformed_block_in_plane()
70 max_blocks_high += (xd->mb_to_bottom_edge >> (5 + pd->subsampling_y)); in vp9_foreach_transformed_block_in_plane()
124 if (has_eob && xd->mb_to_bottom_edge < 0) { in vp9_set_contexts()
127 (xd->mb_to_bottom_edge >> (5 + pd->subsampling_y)); in vp9_set_contexts()
Dvp9_mvref_common.h29 xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN); in clamp_mv2()
Dvp9_blockd.h219 int mb_to_bottom_edge; member
Dvp9_onyxc_int.h275 xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8; in set_mi_row_col()
Dvp9_mvref_common.c122 xd->mb_to_bottom_edge + MV_BORDER); in clamp_mv_ref()
Dvp9_reconinter.c137 xd->mb_to_bottom_edge * (1 << (1 - ss_y)) + spel_bottom); in clamp_mv_to_umv_border_sb()
Dvp9_reconintra.c356 if (xd->mb_to_bottom_edge < 0) { in build_intra_predictors()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
Ddecodemv.c235 int mb_to_bottom_edge) in decode_split_mv() argument
315 mb_to_bottom_edge); in decode_split_mv()
454 int mb_to_bottom_edge; in read_mb_modes_mv() local
461 mb_to_bottom_edge = pbi->mb.mb_to_bottom_edge; in read_mb_modes_mv()
463 mb_to_bottom_edge += RIGHT_BOTTOM_MARGIN; in read_mb_modes_mv()
487 mb_to_bottom_edge); in read_mb_modes_mv()
508 mb_to_bottom_edge); in read_mb_modes_mv()
626 pbi->mb.mb_to_bottom_edge = ((pbi->common.mb_rows - 1) * 16) << 3; in vp8_decode_mode_mvs()
663 pbi->mb.mb_to_bottom_edge -= (16 << 3); in vp8_decode_mode_mvs()
Derror_concealment.c286 int mb_to_bottom_edge) in estimate_mb_mvs() argument
298 int this_b_to_bottom_edge = mb_to_bottom_edge - ((row*4)<<3); in estimate_mb_mvs()
384 int mb_to_bottom_edge = ((mb_rows - 1 - mb_row) * 16) << 3; in estimate_missing_mvs() local
401 mb_to_bottom_edge); in estimate_missing_mvs()
517 int mb_to_bottom_edge = mb->mb_to_bottom_edge - ((row*4)<<3); in interpolate_mvs() local
554 mb_to_bottom_edge); in interpolate_mvs()
Dthreading.c366 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3; in mt_decode_mb_rows()
Ddecodeframe.c573 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3; in decode_mb_rows()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_aq_variance.c121 int bottom_overflow = (xd->mb_to_bottom_edge < 0) ? in block_variance()
122 ((-xd->mb_to_bottom_edge) >> 3) : 0; in block_variance()
Dvp9_encodeframe.c494 if (xd->mb_to_bottom_edge < 0) in choose_partitioning()
495 pixels_high += (xd->mb_to_bottom_edge >> 3); in choose_partitioning()
897 && (xd->mb_to_bottom_edge >> (3 + MI_SIZE_LOG2)) + mi_height > y) { in update_state()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dethreading.c140 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3; in thread_encoding_proc()
Dencodeframe.c418 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3; in encode_mb_row()
Dbitstream.c581 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3; in pack_inter_mode_mvs()
Drdopt.c1715 if(xd->mb_to_bottom_edge==0) near_sad[7] = INT_MAX; in vp8_cal_sad()