Searched refs:SUBSAMPLE (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | scale.cc | 30 #define SUBSAMPLE(v, a, s) (v < 0) ? (-((-v + a) >> s)) : ((v + a) >> s) macro 1575 int src_halfwidth = SUBSAMPLE(src_width, 1, 1); in I420Scale() 1576 int src_halfheight = SUBSAMPLE(src_height, 1, 1); in I420Scale() 1577 int dst_halfwidth = SUBSAMPLE(dst_width, 1, 1); in I420Scale() 1578 int dst_halfheight = SUBSAMPLE(dst_height, 1, 1); in I420Scale() 1607 int src_halfwidth = SUBSAMPLE(src_width, 1, 1); in I420Scale_16() 1608 int src_halfheight = SUBSAMPLE(src_height, 1, 1); in I420Scale_16() 1609 int dst_halfwidth = SUBSAMPLE(dst_width, 1, 1); in I420Scale_16() 1610 int dst_halfheight = SUBSAMPLE(dst_height, 1, 1); in I420Scale_16() 1656 int src_halfwidth = SUBSAMPLE(src_width, 1, 1); in ScaleOffset() [all …]
|
D | convert.cc | 25 #define SUBSAMPLE(v, a, s) (v < 0) ? (-((-v + a) >> s)) : ((v + a) >> s) macro 41 const int dst_uv_width = SUBSAMPLE(dst_y_width, 1, 1); in I4xxToI420() 42 const int dst_uv_height = SUBSAMPLE(dst_y_height, 1, 1); in I4xxToI420() 108 const int src_uv_width = SUBSAMPLE(width, 1, 1); in I422ToI420() 149 const int src_uv_width = SUBSAMPLE(width, 3, 2); in I411ToI420()
|
D | convert_from.cc | 27 #define SUBSAMPLE(v, a, s) (v < 0) ? (-((-v + a) >> s)) : ((v + a) >> s) macro 43 const int src_uv_width = SUBSAMPLE(src_y_width, 1, 1); in I420ToI4xx() 44 const int src_uv_height = SUBSAMPLE(src_y_height, 1, 1); in I420ToI4xx()
|