/external/libvpx/libvpx/vp8/common/ |
findnearmv.h | 37 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) 38 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; 46 static void vp8_clamp_mv(int_mv *mv, int mb_to_left_edge, int mb_to_right_edge, 51 mv->as_mv.col = (mv->as_mv.col > mb_to_right_edge) ? 52 mb_to_right_edge : mv->as_mv.col; 59 int mb_to_right_edge, int mb_to_top_edge, 64 need_to_clamp |= (mv->as_mv.col > mb_to_right_edge);
|
blockd.h | 272 int mb_to_right_edge; member in struct:macroblockd
|
reconinter.c | 353 else if (mv->col > xd->mb_to_right_edge + (18 << 3)) 354 mv->col = xd->mb_to_right_edge + (16 << 3); 367 mv->col = (2*mv->col > xd->mb_to_right_edge + (18 << 3)) ? 368 (xd->mb_to_right_edge + (16 << 3)) >> 1 : mv->col;
|
/external/libvpx/libvpx/vp9/common/ |
vp9_blockd.h | 206 int mb_to_right_edge; member in struct:macroblockd 320 // If mb_to_right_edge is < 0 we are in a situation in which 323 if (xd->mb_to_right_edge < 0 || xd->mb_to_bottom_edge < 0) { 329 // xd->mb_to_right_edge is in units of pixels * 8. This converts 331 if (xd->mb_to_right_edge < 0) 332 max_blocks_wide += (xd->mb_to_right_edge >> (5 + pd->subsampling_x)); 426 if (xd->mb_to_right_edge < 0) { 428 const int umv_border_start = bw + (xd->mb_to_right_edge >> 461 if (has_eob && xd->mb_to_right_edge < 0) { 464 (xd->mb_to_right_edge >> (5 + pd->subsampling_x)) [all...] |
vp9_findnearmv.h | 32 xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN,
|
vp9_mvref_common.c | 115 xd->mb_to_right_edge + MV_BORDER,
|
vp9_onyxc_int.h | 275 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
|
vp9_reconinter.c | 113 xd->mb_to_right_edge * (1 << (1 - ss_x)) + spel_right,
|
/external/libvpx/libvpx/vp8/decoder/ |
error_concealment.c | 284 int mb_to_right_edge, 303 int this_b_to_right_edge = mb_to_right_edge - ((col*4)<<3); 388 int mb_to_right_edge = ((mb_cols - 1 - mb_col) * 16) << 3; local 399 mb_to_right_edge, 521 int mb_to_right_edge = mb->mb_to_right_edge - ((col*4)<<3); local 552 mb_to_right_edge,
|
decodemv.c | 234 int mb_to_right_edge, int mb_to_top_edge, 313 mb_to_right_edge, 456 int mb_to_right_edge; local 464 mb_to_right_edge = pbi->mb.mb_to_right_edge; 465 mb_to_right_edge += RIGHT_BOTTOM_MARGIN; 485 mb_to_right_edge, 506 mb_to_right_edge, 635 pbi->mb.mb_to_right_edge = mb_to_right_edge_start; 660 pbi->mb.mb_to_right_edge -= (16 << 3) [all...] |
threading.c | 423 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
|
decodframe.c | 602 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_vaq.c | 115 int right_overflow = (xd->mb_to_right_edge < 0) ? 116 ((-xd->mb_to_right_edge) >> 3) : 0;
|
vp9_encodemb.c | 542 if (xd->mb_to_right_edge < 0 || xd->mb_to_bottom_edge < 0)
|
vp9_encodeframe.c | 408 if ((xd->mb_to_right_edge >> (3 + MI_SIZE_LOG2)) + mi_width > x_idx [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
ethreading.c | 138 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3; 388 zd->mb_to_right_edge = xd->mb_to_right_edge;
|
bitstream.c | 579 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; [all...] |
encodeframe.c | 441 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3; [all...] |
rdopt.c | [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodframe.c | 316 if (xd->mb_to_right_edge < 0 || xd->mb_to_bottom_edge < 0) [all...] |