Searched refs:VP9_INTERP_EXTEND (Results 1 - 6 of 6) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_mvref_common.h20 #define LEFT_TOP_MARGIN ((VP9_ENC_BORDER_IN_PIXELS - VP9_INTERP_EXTEND) << 3)
22 VP9_INTERP_EXTEND) << 3)
H A Dvp9_reconinter.c122 const int spel_left = (VP9_INTERP_EXTEND + bw) << SUBPEL_BITS;
124 const int spel_top = (VP9_INTERP_EXTEND + bh) << SUBPEL_BITS;
356 x0 -= VP9_INTERP_EXTEND - 1;
357 x1 += VP9_INTERP_EXTEND;
362 y0 -= VP9_INTERP_EXTEND - 1;
363 y1 += VP9_INTERP_EXTEND;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
H A Dyv12config.h23 #define VP9_INTERP_EXTEND 4 macro
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_mcomp.h32 #define BORDER_MV_PIXELS_B16 (16 + VP9_INTERP_EXTEND)
H A Dvp9_temporal_filter.c227 // then be 16 - VP9_INTERP_EXTEND. The UV blocks are half the size of the
229 // can support is 8 - VP9_INTERP_EXTEND. A UV mv is half of a Y mv.
230 // (16 - VP9_INTERP_EXTEND) >> 1 which is greater than
231 // 8 - VP9_INTERP_EXTEND.
233 // can be on a border is therefore 16 - (2*VP9_INTERP_EXTEND+1).
234 cpi->mb.mv_row_min = -((mb_row * 16) + (17 - 2 * VP9_INTERP_EXTEND));
236 + (17 - 2 * VP9_INTERP_EXTEND);
247 cpi->mb.mv_col_min = -((mb_col * 16) + (17 - 2 * VP9_INTERP_EXTEND));
249 + (17 - 2 * VP9_INTERP_EXTEND);
H A Dvp9_encodeframe.c235 x->mv_row_min = -(((mi_row + mi_height) * MI_SIZE) + VP9_INTERP_EXTEND);
236 x->mv_col_min = -(((mi_col + mi_width) * MI_SIZE) + VP9_INTERP_EXTEND);
237 x->mv_row_max = (cm->mi_rows - mi_row) * MI_SIZE + VP9_INTERP_EXTEND;
238 x->mv_col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND;

Completed in 240 milliseconds