HomeSort by relevance Sort by last modified time
    Searched defs:SUBPEL_BITS (Results 1 - 2 of 2) 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)
  /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...]

Completed in 261 milliseconds