HomeSort by relevance Sort by last modified time
    Searched refs:mv_limits (Results 1 - 10 of 10) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_mbgraph.c 33 const MvLimits tmp_mv_limits = x->mv_limits;
41 vp9_set_mv_search_range(&x->mv_limits, ref_mv);
53 x->mv_limits = tmp_mv_limits;
229 x->mv_limits.row_min = -BORDER_MV_PIXELS_B16;
230 x->mv_limits.row_max = (cm->mb_rows - 1) * 8 + BORDER_MV_PIXELS_B16;
250 x->mv_limits.col_min = -BORDER_MV_PIXELS_B16;
251 x->mv_limits.col_max = (cm->mb_cols - 1) * 8 + BORDER_MV_PIXELS_B16;
270 x->mv_limits.col_min -= 16;
271 x->mv_limits.col_max -= 16;
280 x->mv_limits.row_min -= 16
    [all...]
vp9_mcomp.c 37 void vp9_set_mv_search_range(MvLimits *mv_limits, const MV *mv) {
50 if (mv_limits->col_min < col_min) mv_limits->col_min = col_min;
51 if (mv_limits->col_max > col_max) mv_limits->col_max = col_max;
52 if (mv_limits->row_min < row_min) mv_limits->row_min = row_min;
53 if (mv_limits->row_max > row_max) mv_limits->row_max = row_max;
312 vp9_set_subpel_mv_search_range(&subpel_mv_limits, &x->mv_limits, ref_mv);
    [all...]
vp9_block.h 120 MvLimits mv_limits; member in struct:macroblock
vp9_mcomp.h 44 void vp9_set_mv_search_range(MvLimits *mv_limits, const MV *mv);
vp9_temporal_filter.c 240 const MvLimits tmp_mv_limits = x->mv_limits;
261 vp9_set_mv_search_range(&x->mv_limits, &best_ref_mv1);
268 x->mv_limits = tmp_mv_limits;
337 td->mb.mv_limits.row_min = -((mb_row * 16) + (17 - 2 * VP9_INTERP_EXTEND));
338 td->mb.mv_limits.row_max =
349 td->mb.mv_limits.col_min = -((mb_col * 16) + (17 - 2 * VP9_INTERP_EXTEND));
350 td->mb.mv_limits.col_max =
vp9_pickmode.c 158 const MvLimits tmp_mv_limits = x->mv_limits;
172 vp9_set_mv_search_range(&x->mv_limits, &ref_mv);
176 x->mv_limits.col_min = VPXMAX(x->mv_limits.col_min, -10);
177 x->mv_limits.row_min = VPXMAX(x->mv_limits.row_min, -10);
178 x->mv_limits.col_max = VPXMIN(x->mv_limits.col_max, 10);
179 x->mv_limits.row_max = VPXMIN(x->mv_limits.row_max, 10)
    [all...]
vp9_rdopt.c     [all...]
vp9_firstpass.c     [all...]
vp9_encodeframe.c 229 MvLimits *const mv_limits = &x->mv_limits; local
242 mv_limits->row_min = -(((mi_row + mi_height) * MI_SIZE) + VP9_INTERP_EXTEND);
243 mv_limits->col_min = -(((mi_col + mi_width) * MI_SIZE) + VP9_INTERP_EXTEND);
244 mv_limits->row_max = (cm->mi_rows - mi_row) * MI_SIZE + VP9_INTERP_EXTEND;
245 mv_limits->col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND;
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_diamond_search_sad_avx.c 78 const int_mv maxmv = pack_int_mv(x->mv_limits.row_max, x->mv_limits.col_max);
80 const int_mv minmv = pack_int_mv(x->mv_limits.row_min, x->mv_limits.col_min);

Completed in 121 milliseconds