/external/libvpx/libvpx/vp8/encoder/ |
block.h | 111 int mv_row_max; member in struct:macroblock
|
mcomp.c | 229 int maxr = MIN(x->mv_row_max * 4, 246 buf_r2 = ((bestmv->as_mv.row + 3) > x->mv_row_max)?(x->mv_row_max - bestmv->as_mv.row):3; 813 all_in &= ((br+range) <= x->mv_row_max);\ 823 if (this_mv.as_mv.row > x->mv_row_max) continue;\ 891 vp8_clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); [all...] |
rdopt.c | [all...] |
pickinter.c | 873 int tmp_row_max = x->mv_row_max; 955 if (x->mv_row_max > row_max ) 956 x->mv_row_max = row_max; [all...] |
temporal_filter.c | 266 cpi->mb.mv_row_max = ((cpi->common.mb_rows - 1 - mb_row) * 16)
|
ethreading.c | 148 x->mv_row_max = ((cm->mb_rows - 1 - mb_row) * 16) + (VP8BORDERINPIXELS - 16); 327 z->mv_row_max = x->mv_row_max;
|
encodeframe.c | 423 x->mv_row_max = ((cm->mb_rows - 1 - mb_row) * 16) [all...] |
firstpass.c | 594 x->mv_row_max = ((cm->mb_rows - 1 - mb_row) * 16) + (VP8BORDERINPIXELS - 16); [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_mcomp.c | 41 if (x->mv_row_max > row_max) 42 x->mv_row_max = row_max; 310 const int maxr = MIN(x->mv_row_max * 8, ref_mv->row + MV_MAX); 407 const int maxr = MIN(x->mv_row_max * 8, ref_mv->row + MV_MAX); 503 const int maxr = MIN(x->mv_row_max * 8, ref_mv->row + MV_MAX); 605 const int maxr = MIN(x->mv_row_max * 8, ref_mv->row + MV_MAX); 676 all_in &= ((br+range) <= x->mv_row_max);\ 686 if (this_mv.row > x->mv_row_max) continue;\ 756 clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); [all...] |
vp9_mbgraph.c | 38 const int tmp_row_max = x->mv_row_max; 80 x->mv_row_max = tmp_row_max; 257 x->mv_row_max = (cm->mb_rows - 1) * 8 + BORDER_MV_PIXELS_B16; 307 x->mv_row_max -= 16;
|
vp9_block.h | 149 int mv_row_max; member in struct:macroblock
|
vp9_temporal_filter.c | 228 cpi->mb.mv_row_max = ((cpi->common.mb_rows - 1 - mb_row) * 16)
|
vp9_rdopt.c | [all...] |
vp9_firstpass.c | 566 x->mv_row_max = ((cm->mb_rows - 1 - mb_row) * 16) [all...] |
vp9_encodeframe.c | 544 x->mv_row_max = (cm->mi_rows - mi_row) * MI_SIZE + VP9_INTERP_EXTEND; [all...] |