Home
last modified time | relevance | path

Searched refs:dst_yoffset (Results 1 – 2 of 2) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/include/libyuv/
Dscale.h59 uint8* dst, int dst_width, int dst_height, int dst_yoffset,
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/
Dscale.c3852 uint8* dst, int dst_width, int dst_height, int dst_yoffset, in ScaleOffset() argument
3855 !dst || dst_width <= 0 || dst_height <= 0 || dst_yoffset < 0 || in ScaleOffset()
3856 dst_yoffset >= dst_height) { in ScaleOffset()
3859 dst_yoffset = dst_yoffset & ~1; // chroma requires offset to multiple of 2. in ScaleOffset()
3865 int aheight = dst_height - dst_yoffset * 2; // actual output height in ScaleOffset()
3870 uint8* dst_y = dst + dst_yoffset * dst_width; in ScaleOffset()
3872 (dst_yoffset >> 1) * dst_halfwidth; in ScaleOffset()
3874 (dst_yoffset >> 1) * dst_halfwidth; in ScaleOffset()