Lines Matching refs:dst_u
112 uint8* dst_u, int dst_stride_u, in YUY2ToI422() argument
122 uint8* dst_u, uint8* dst_v, int pix); in YUY2ToI422()
160 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in YUY2ToI422()
164 dst_u += dst_stride_u; in YUY2ToI422()
174 uint8* dst_u, int dst_stride_u, in UYVYToI422() argument
184 uint8* dst_u, uint8* dst_v, int pix); in UYVYToI422()
222 UYVYToUV422Row(src_uyvy, dst_u, dst_v, width); in UYVYToI422()
226 dst_u += dst_stride_u; in UYVYToI422()
238 uint8* dst_u, int dst_stride_u, in I420Mirror() argument
241 if (!src_y || !src_u || !src_v || !dst_y || !dst_u || !dst_v || in I420Mirror()
262 MirrorPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I420Mirror()
386 uint8* dst_u, int dst_stride_u, in ARGBToI422() argument
389 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422()
400 uint8* dst_u, uint8* dst_v, int width) = ARGBToUVRow_C; in ARGBToI422()
421 ARGBToUVRow(src_argb, 0, dst_u, dst_v, width); in ARGBToI422()
425 dst_u += dst_stride_u; in ARGBToI422()
950 uint8* dst_u, int dst_stride_u, in I420Rect() argument
955 if (!dst_y || !dst_u || !dst_v || in I420Rect()
966 uint8* start_u = dst_u + (y / 2) * dst_stride_u + (x / 2); in I420Rect()