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

  /external/libvpx/libvpx/vpx_dsp/
vpx_filter.h 23 #define SUBPEL_BITS 4
24 #define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
25 #define SUBPEL_SHIFTS (1 << SUBPEL_BITS)
vpx_convolve.c 31 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
53 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
77 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
100 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
135 (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS;
352 const uint16_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
377 const uint16_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
403 const uint16_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
429 const uint16_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
464 (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS
    [all...]
  /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/common/
vp9_reconinter.c 51 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
73 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
113 const int spel_left = (VP9_INTERP_EXTEND + bw) << SUBPEL_BITS;
115 const int spel_top = (VP9_INTERP_EXTEND + bh) << SUBPEL_BITS;
214 pre += (scaled_mv.row >> SUBPEL_BITS) * pre_buf->stride
215 + (scaled_mv.col >> SUBPEL_BITS);
vp9_scale.c 38 const int x_off_q4 = scaled_x(x << SUBPEL_BITS, sf) & SUBPEL_MASK;
39 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf) & SUBPEL_MASK;
  /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...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.c 28 #define SUBPEL_BITS 5
29 #define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
35 static const interp_kernel filteredinterp_filters500[(1 << SUBPEL_BITS)] = {
71 static const interp_kernel filteredinterp_filters625[(1 << SUBPEL_BITS)] = {
107 static const interp_kernel filteredinterp_filters750[(1 << SUBPEL_BITS)] = {
143 static const interp_kernel filteredinterp_filters875[(1 << SUBPEL_BITS)] = {
179 static const interp_kernel filteredinterp_filters1000[(1 << SUBPEL_BITS)] = {
265 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK;
280 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK;
293 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/vpx_dsp/x86/
vpx_subpixel_8t_intrin_ssse3.c 473 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
591 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
662 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
724 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride]
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 592 x0_16 = (x_start + x) << SUBPEL_BITS;
593 y0_16 = (y_start + y) << SUBPEL_BITS;
615 x0_16 = x0 << SUBPEL_BITS;
616 y0_16 = y0 << SUBPEL_BITS;
627 x0 += scaled_mv.col >> SUBPEL_BITS;
628 y0 += scaled_mv.row >> SUBPEL_BITS;
640 int y1 = ((y0_16 + (h - 1) * ys) >> SUBPEL_BITS) + 1;
643 int x1 = ((x0_16 + (w - 1) * xs) >> SUBPEL_BITS) + 1;
688 const int y1 = (y0_16 + (h - 1) * ys) >> SUBPEL_BITS;
    [all...]

Completed in 199 milliseconds