Searched defs:mb_to_bottom_edge (Results 1 - 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp8/common/
H A Dfindnearmv.h42 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
43 mv->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN;
47 int mb_to_top_edge, int mb_to_bottom_edge)
55 mv->as_mv.row = (mv->as_mv.row > mb_to_bottom_edge) ?
56 mb_to_bottom_edge : mv->as_mv.row;
60 int mb_to_bottom_edge)
66 need_to_clamp |= (mv->as_mv.row > mb_to_bottom_edge);
46 vp8_clamp_mv(int_mv *mv, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
58 vp8_check_mv_bounds(int_mv *mv, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
H A Dblockd.h274 int mb_to_bottom_edge; member in struct:macroblockd
/external/libvpx/libvpx/vp8/decoder/
H A Ddecodemv.c235 int mb_to_bottom_edge)
315 mb_to_bottom_edge);
454 int mb_to_bottom_edge; local
461 mb_to_bottom_edge = pbi->mb.mb_to_bottom_edge;
463 mb_to_bottom_edge += RIGHT_BOTTOM_MARGIN;
487 mb_to_bottom_edge);
508 mb_to_bottom_edge);
627 pbi->mb.mb_to_bottom_edge = ((pbi->common.mb_rows - 1) * 16) << 3;
664 pbi->mb.mb_to_bottom_edge
230 decode_split_mv(vp8_reader *const bc, MODE_INFO *mi, const MODE_INFO *left_mb, const MODE_INFO *above_mb, MB_MODE_INFO *mbmi, int_mv best_mv, MV_CONTEXT *const mvc, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
[all...]
H A Derror_concealment.c286 int mb_to_bottom_edge)
298 int this_b_to_bottom_edge = mb_to_bottom_edge - ((row*4)<<3);
384 int mb_to_bottom_edge = ((mb_rows - 1 - mb_row) * 16) << 3; local
401 mb_to_bottom_edge);
517 int mb_to_bottom_edge = mb->mb_to_bottom_edge - ((row*4)<<3); local
554 mb_to_bottom_edge);
281 estimate_mb_mvs(const B_OVERLAP *block_overlaps, MODE_INFO *mi, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
/external/libvpx/libvpx/vp9/common/
H A Dvp9_blockd.h227 int mb_to_bottom_edge; member in struct:macroblockd
409 if (xd->mb_to_right_edge < 0 || xd->mb_to_bottom_edge < 0) {
420 if (xd->mb_to_bottom_edge < 0)
421 max_blocks_high += (xd->mb_to_bottom_edge >> (5 + pd->subsampling_y));
522 if (xd->mb_to_bottom_edge < 0) {
524 const int umv_border_start = bh + (xd->mb_to_bottom_edge >>
552 if (xd->mb_to_bottom_edge < 0)
553 mi_blocks_high += (xd->mb_to_bottom_edge >> (5 + pd->subsampling_y));
580 if (xd->mb_to_right_edge < 0 || xd->mb_to_bottom_edge < 0) {

Completed in 236 milliseconds