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

  /external/libvpx/libvpx/vp9/common/
vp9_filter.h 19 #define SUBPEL_BITS 4
20 #define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
21 #define SUBPEL_SHIFTS (1 << SUBPEL_BITS)
vp9_scale.c 46 scale->x_offset_q4 = scaled_x(col << SUBPEL_BITS, scale->sfc) & SUBPEL_MASK;
47 scale->y_offset_q4 = scaled_y(row << SUBPEL_BITS, scale->sfc) & SUBPEL_MASK;
vp9_convolve.c 42 const int src_x = x_q4 >> SUBPEL_BITS;
83 const int src_x = x_q4 >> SUBPEL_BITS;
125 const int src_y = y_q4 >> SUBPEL_BITS;
167 const int src_y = y_q4 >> SUBPEL_BITS;
vp9_reconinter.c 53 src += (mv->row >> SUBPEL_BITS) * src_stride + (mv->col >> SUBPEL_BITS);
100 const int spel_left = (VP9_INTERP_EXTEND + bw) << SUBPEL_BITS;
102 const int spel_top = (VP9_INTERP_EXTEND + bh) << SUBPEL_BITS;
  /external/libvpx/libvpx/test/
convolve_test.cc 506 >> SUBPEL_BITS);
520 >> SUBPEL_BITS);
537 >> SUBPEL_BITS);
543 >> SUBPEL_BITS);

Completed in 761 milliseconds