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

  /external/libvpx/libvpx/vp9/common/
vp9_filter.h 25 #define SUBPEL_BITS 4
26 #define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
27 #define SUBPEL_SHIFTS (1 << SUBPEL_BITS)
vp9_reconinter.c 94 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
134 const int spel_left = (VP9_INTERP_EXTEND + bw) << SUBPEL_BITS;
136 const int spel_top = (VP9_INTERP_EXTEND + bh) << SUBPEL_BITS;
222 pre += (scaled_mv.row >> SUBPEL_BITS) * pre_buf->stride
223 + (scaled_mv.col >> SUBPEL_BITS);
327 x0_16 = (x_start + x) << SUBPEL_BITS;
328 y0_16 = (y_start + y) << SUBPEL_BITS;
350 x0_16 = x0 << SUBPEL_BITS;
351 y0_16 = y0 << SUBPEL_BITS;
    [all...]
vp9_scale.c 37 const int x_off_q4 = scaled_x(x << SUBPEL_BITS, sf) & SUBPEL_MASK;
38 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf) & SUBPEL_MASK;
vp9_convolve.c 30 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
52 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
76 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
99 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_filter.h 25 #define SUBPEL_BITS 4
26 #define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
27 #define SUBPEL_SHIFTS (1 << SUBPEL_BITS)
vp9_reconinter.c 94 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
122 const int spel_left = (VP9_INTERP_EXTEND + bw) << SUBPEL_BITS;
124 const int spel_top = (VP9_INTERP_EXTEND + bh) << SUBPEL_BITS;
193 pre += (scaled_mv.row >> SUBPEL_BITS) * pre_buf->stride
194 + (scaled_mv.col >> SUBPEL_BITS);
303 x0_16 = (x_start + x) << SUBPEL_BITS;
304 y0_16 = (y_start + y) << SUBPEL_BITS;
326 x0_16 = x0 << SUBPEL_BITS;
327 y0_16 = y0 << SUBPEL_BITS;
    [all...]
vp9_scale.c 45 const int x_off_q4 = scaled_x(x << SUBPEL_BITS, sf) & SUBPEL_MASK;
46 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf) & SUBPEL_MASK;
vp9_convolve.c 30 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
52 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
76 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
99 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.c 24 #define SUBPEL_BITS 5
25 #define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
31 const interp_kernel vp9_filteredinterp_filters500[(1 << SUBPEL_BITS)] = {
67 const interp_kernel vp9_filteredinterp_filters625[(1 << SUBPEL_BITS)] = {
103 const interp_kernel vp9_filteredinterp_filters750[(1 << SUBPEL_BITS)] = {
139 const interp_kernel vp9_filteredinterp_filters875[(1 << SUBPEL_BITS)] = {
175 const interp_kernel vp9_filteredinterp_filters1000[(1 << SUBPEL_BITS)] = {
261 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK;
276 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK;
289 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_resize.c 24 #define SUBPEL_BITS 5
25 #define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
31 const interp_kernel vp9_filteredinterp_filters500[(1 << SUBPEL_BITS)] = {
67 const interp_kernel vp9_filteredinterp_filters625[(1 << SUBPEL_BITS)] = {
103 const interp_kernel vp9_filteredinterp_filters750[(1 << SUBPEL_BITS)] = {
139 const interp_kernel vp9_filteredinterp_filters875[(1 << SUBPEL_BITS)] = {
175 const interp_kernel vp9_filteredinterp_filters1000[(1 << SUBPEL_BITS)] = {
261 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK;
276 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK;
289 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
convolve_test.cc 506 >> SUBPEL_BITS);
520 >> SUBPEL_BITS);
537 >> SUBPEL_BITS);
543 >> SUBPEL_BITS);
  /external/libvpx/libvpx/test/
convolve_test.cc 507 >> SUBPEL_BITS);
522 >> SUBPEL_BITS);
538 >> SUBPEL_BITS);
544 >> SUBPEL_BITS);

Completed in 273 milliseconds