Home
last modified time | relevance | path

Searched refs:dst_stride_uyvy (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from.cc258 uint8* dst_uyvy, int dst_stride_uyvy, in I422ToUYVY() argument
271 dst_uyvy = dst_uyvy + (height - 1) * dst_stride_uyvy; in I422ToUYVY()
272 dst_stride_uyvy = -dst_stride_uyvy; in I422ToUYVY()
278 dst_stride_uyvy == width * 2) { in I422ToUYVY()
281 src_stride_y = src_stride_u = src_stride_v = dst_stride_uyvy = 0; in I422ToUYVY()
305 dst_uyvy += dst_stride_uyvy; in I422ToUYVY()
314 uint8* dst_uyvy, int dst_stride_uyvy, in I420ToUYVY() argument
327 dst_uyvy = dst_uyvy + (height - 1) * dst_stride_uyvy; in I420ToUYVY()
328 dst_stride_uyvy = -dst_stride_uyvy; in I420ToUYVY()
350 dst_uyvy + dst_stride_uyvy, width); in I420ToUYVY()
[all …]
Dconvert_from_argb.cc585 uint8* dst_uyvy, int dst_stride_uyvy, in ARGBToUYVY() argument
602 dst_uyvy = dst_uyvy + (height - 1) * dst_stride_uyvy; in ARGBToUYVY()
603 dst_stride_uyvy = -dst_stride_uyvy; in ARGBToUYVY()
607 dst_stride_uyvy == width * 2) { in ARGBToUYVY()
610 src_stride_argb = dst_stride_uyvy = 0; in ARGBToUYVY()
681 dst_uyvy += dst_stride_uyvy; in ARGBToUYVY()
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h182 uint8* dst_uyvy, int dst_stride_uyvy,