Home
last modified time | relevance | path

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

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from.cc150 uint8* dst_yuy2, int dst_stride_yuy2, in I422ToYUY2() argument
163 dst_yuy2 = dst_yuy2 + (height - 1) * dst_stride_yuy2; in I422ToYUY2()
164 dst_stride_yuy2 = -dst_stride_yuy2; in I422ToYUY2()
170 dst_stride_yuy2 == width * 2) { in I422ToYUY2()
173 src_stride_y = src_stride_u = src_stride_v = dst_stride_yuy2 = 0; in I422ToYUY2()
197 dst_yuy2 += dst_stride_yuy2; in I422ToYUY2()
206 uint8* dst_yuy2, int dst_stride_yuy2, in I420ToYUY2() argument
219 dst_yuy2 = dst_yuy2 + (height - 1) * dst_stride_yuy2; in I420ToYUY2()
220 dst_stride_yuy2 = -dst_stride_yuy2; in I420ToYUY2()
242 dst_yuy2 + dst_stride_yuy2, width); in I420ToYUY2()
[all …]
Dconvert_from_argb.cc478 uint8* dst_yuy2, int dst_stride_yuy2, in ARGBToYUY2() argument
495 dst_yuy2 = dst_yuy2 + (height - 1) * dst_stride_yuy2; in ARGBToYUY2()
496 dst_stride_yuy2 = -dst_stride_yuy2; in ARGBToYUY2()
500 dst_stride_yuy2 == width * 2) { in ARGBToYUY2()
503 src_stride_argb = dst_stride_yuy2 = 0; in ARGBToYUY2()
574 dst_yuy2 += dst_stride_yuy2; in ARGBToYUY2()
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h176 uint8* dst_yuy2, int dst_stride_yuy2,