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

  /external/libvpx/libvpx/vpx_scale/
yv12config.h 25 #define VP9_INTERP_EXTEND 4
  /external/libvpx/libvpx/vp9/common/
vp9_mvref_common.h 20 #define LEFT_TOP_MARGIN ((VP9_ENC_BORDER_IN_PIXELS - VP9_INTERP_EXTEND) << 3)
22 ((VP9_ENC_BORDER_IN_PIXELS - VP9_INTERP_EXTEND) << 3)
vp9_reconinter.c 95 const int spel_left = (VP9_INTERP_EXTEND + bw) << SUBPEL_BITS;
97 const int spel_top = (VP9_INTERP_EXTEND + bh) << SUBPEL_BITS;
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.h 31 #define BORDER_MV_PIXELS_B16 (16 + VP9_INTERP_EXTEND)
vp9_temporal_filter.c 330 // then be 16 - VP9_INTERP_EXTEND. The UV blocks are half the size of the
332 // can support is 8 - VP9_INTERP_EXTEND. A UV mv is half of a Y mv.
333 // (16 - VP9_INTERP_EXTEND) >> 1 which is greater than
334 // 8 - VP9_INTERP_EXTEND.
336 // can be on a border is therefore 16 - (2*VP9_INTERP_EXTEND+1).
337 td->mb.mv_limits.row_min = -((mb_row * 16) + (17 - 2 * VP9_INTERP_EXTEND));
339 ((mb_rows - 1 - mb_row) * 16) + (17 - 2 * VP9_INTERP_EXTEND);
349 td->mb.mv_limits.col_min = -((mb_col * 16) + (17 - 2 * VP9_INTERP_EXTEND));
351 ((mb_cols - 1 - mb_col) * 16) + (17 - 2 * VP9_INTERP_EXTEND);
vp9_encodeframe.c 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/decoder/
vp9_decodeframe.c 585 x0 -= VP9_INTERP_EXTEND - 1;
586 x1 += VP9_INTERP_EXTEND;
591 y0 -= VP9_INTERP_EXTEND - 1;
592 y1 += VP9_INTERP_EXTEND;
    [all...]

Completed in 996 milliseconds