/external/libvpx/libvpx/vp8/encoder/ |
block.h | 109 int mv_col_max; member in struct:macroblock
|
mcomp.c | 224 int maxc = MIN(x->mv_col_max << 2, (ref_mv->as_mv.col >> 1) + ((1 << mvlong_width) - 1)); 811 all_in &= ((bc+range) <= x->mv_col_max);\ 817 if (this_mv.as_mv.col > x->mv_col_max) continue;\ 887 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 | 871 int tmp_col_max = x->mv_col_max; 951 if (x->mv_col_max > col_max ) 952 x->mv_col_max = col_max; [all...] |
temporal_filter.c | 280 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
|
ethreading.c | 146 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); 325 z->mv_col_max = x->mv_col_max;
|
encodeframe.c | 447 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) [all...] |
firstpass.c | 633 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_block.h | 135 int mv_col_max; member in struct:macroblock
|
vp9_mcomp.c | 37 if (x->mv_col_max > col_max) 38 x->mv_col_max = col_max; 348 const int maxc = MIN(x->mv_col_max << 3, ref_mv->as_mv.col + MV_MAX); 455 maxc = MIN(x->mv_col_max << 3, 558 const int maxc = MIN(x->mv_col_max << 3, ref_mv->as_mv.col + MV_MAX); 670 maxc = MIN(x->mv_col_max << 3, (ref_mv->as_mv.col) + 752 all_in &= ((bc+range) <= x->mv_col_max);\ 758 if (this_mv.as_mv.col > x->mv_col_max) continue;\ 831 x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); [all...] |
vp9_mbgraph.c | 33 const int tmp_col_max = x->mv_col_max; 74 x->mv_col_max = tmp_col_max; 271 x->mv_col_max = (cm->mb_cols - 1) * 8 + VP9BORDERINPIXELS 293 x->mv_col_max -= 16;
|
vp9_temporal_filter.c | 240 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
|
vp9_rdopt.c | [all...] |
vp9_firstpass.c | 587 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) [all...] |
vp9_encodeframe.c | 519 x->mv_col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND; [all...] |