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

  /external/libvpx/libvpx/third_party/libyuv/source/
scale.cc 30 #define SUBSAMPLE(v, a, s) (v < 0) ? (-((-v + a) >> s)) : ((v + a) >> s)
    [all...]
convert.cc 25 #define SUBSAMPLE(v, a, s) (v < 0) ? (-((-v + a) >> s)) : ((v + a) >> s)
41 const int dst_uv_width = SUBSAMPLE(dst_y_width, 1, 1);
42 const int dst_uv_height = SUBSAMPLE(dst_y_height, 1, 1);
108 const int src_uv_width = SUBSAMPLE(width, 1, 1);
149 const int src_uv_width = SUBSAMPLE(width, 3, 2);
    [all...]
convert_from.cc 27 #define SUBSAMPLE(v, a, s) (v < 0) ? (-((-v + a) >> s)) : ((v + a) >> s)
43 const int src_uv_width = SUBSAMPLE(src_y_width, 1, 1);
44 const int src_uv_height = SUBSAMPLE(src_y_height, 1, 1);
    [all...]

Completed in 85 milliseconds