Home
last modified time | relevance | path

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

/external/libvpx/vp8/decoder/
Ddecodemv.c295 int mb_to_bottom_edge; in read_mb_modes_mv() local
298 mb_to_bottom_edge = pbi->mb.mb_to_bottom_edge; in read_mb_modes_mv()
300 mb_to_bottom_edge += RIGHT_BOTTOM_MARGIN; in read_mb_modes_mv()
395 mbmi->need_to_clamp_mvs |= (mv->row > mb_to_bottom_edge) ? 1 : 0; in read_mb_modes_mv()
427 mv->row = (mv->row > mb_to_bottom_edge) ? mb_to_bottom_edge : mv->row; in read_mb_modes_mv()
436 mv->row = (mv->row > mb_to_bottom_edge) ? mb_to_bottom_edge : mv->row; in read_mb_modes_mv()
456 mbmi->need_to_clamp_mvs |= (mv->row > mb_to_bottom_edge) ? 1 : 0; in read_mb_modes_mv()
527 int mb_to_bottom_edge; in vp8_decode_mode_mvs() local
533 pbi->mb.mb_to_bottom_edge = in vp8_decode_mode_mvs()
534 mb_to_bottom_edge = ((pbi->common.mb_rows - 1 - mb_row) * 16) << 3; in vp8_decode_mode_mvs()
[all …]
Ddecodframe.c145 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3)) in clamp_mv_to_umv_border()
146 mv->row = xd->mb_to_bottom_edge + (16 << 3); in clamp_mv_to_umv_border()
156 …mv->row = (2*mv->row > xd->mb_to_bottom_edge + (18 << 3)) ? (xd->mb_to_bottom_edge + (16 << 3)) >>… in clamp_uvmv_to_umv_border()
344 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3; in decode_mb_row()
Dthreading.c274 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3; in thread_decoding_proc()
754 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3; in vp8mt_decode_mb_rows()
/external/libvpx/vp8/common/
Dfindnearmv.h51 else if (mv->row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN) in vp8_clamp_mv()
52 mv->row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv()
Dblockd.h272 int mb_to_bottom_edge; member
/external/libvpx/vp8/encoder/
Dethreading.c134 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3; in thread_encoding_proc()
Drdopt.c1702 if(xd->mb_to_bottom_edge==0) near_sad[7] = INT_MAX; in vp8_cal_sad()
2221 else if (mode_mv[this_mode].row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN) in vp8_rd_pick_inter_mode()
2222 mode_mv[this_mode].row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN; in vp8_rd_pick_inter_mode()
Dbitstream.c926 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3; in pack_inter_mode_mvs()
Dencodeframe.c507 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3; in encode_mb_row()