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

  /external/libvpx/libvpx/vpx_dsp/
vpx_filter.h 22 #define SUBPEL_BITS 4
23 #define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
24 #define SUBPEL_SHIFTS (1 << SUBPEL_BITS)
vpx_convolve.c 32 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
54 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
77 const uint8_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
100 const uint8_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
135 (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS;
332 const uint16_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
354 const uint16_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
378 const uint16_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
402 const uint16_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
437 (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
highbd_vpx_convolve_neon.c 25 (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS;
49 (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS;
  /external/libvpx/libvpx/vp9/common/
vp9_reconinter.c 35 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
55 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
95 const int spel_left = (VP9_INTERP_EXTEND + bw) << SUBPEL_BITS;
97 const int spel_top = (VP9_INTERP_EXTEND + bh) << SUBPEL_BITS;
188 pre += (scaled_mv.row >> SUBPEL_BITS) * pre_buf->stride +
189 (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;
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.c 29 #define SUBPEL_BITS 5
30 #define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
36 static const interp_kernel filteredinterp_filters500[(1 << SUBPEL_BITS)] = {
56 static const interp_kernel filteredinterp_filters625[(1 << SUBPEL_BITS)] = {
76 static const interp_kernel filteredinterp_filters750[(1 << SUBPEL_BITS)] = {
96 static const interp_kernel filteredinterp_filters875[(1 << SUBPEL_BITS)] = {
116 static const interp_kernel filteredinterp_filters1000[(1 << SUBPEL_BITS)] = {
189 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK;
204 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK;
217 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK
    [all...]
  /external/libvpx/libvpx/vpx_dsp/ppc/
vpx_convolve_vsx.c 194 convolve_line_h(dst + x, &src[x_q4 >> SUBPEL_BITS],
214 convolve_line_h(&v, &src[x_q4 >> SUBPEL_BITS],
270 &src[(y_q4 >> SUBPEL_BITS) * src_stride], src_stride,
290 convolve_line_v(&v, &src[(y_q4 >> SUBPEL_BITS) * src_stride], src_stride,
319 (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS;
  /external/libvpx/libvpx/vpx_dsp/x86/
vpx_subpixel_8t_intrin_ssse3.c 460 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
578 const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
649 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
711 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 530 x0_16 = (x_start + x) << SUBPEL_BITS;
531 y0_16 = (y_start + y) << SUBPEL_BITS;
553 x0_16 = x0 << SUBPEL_BITS;
554 y0_16 = y0 << SUBPEL_BITS;
565 x0 += scaled_mv.col >> SUBPEL_BITS;
566 y0 += scaled_mv.row >> SUBPEL_BITS;
578 int y1 = ((y0_16 + (h - 1) * ys) >> SUBPEL_BITS) + 1;
581 int x1 = ((x0_16 + (w - 1) * xs) >> SUBPEL_BITS) + 1;
624 const int y1 = (y0_16 + (h - 1) * ys) >> SUBPEL_BITS;
    [all...]

Completed in 132 milliseconds