Lines Matching refs:dst_v
33 uint8* dst_v, int dst_stride_v, in I420ToI422() argument
36 !dst_y || !dst_u || !dst_v || in I420ToI422()
45 dst_v = dst_v + (height - 1) * dst_stride_v; in I420ToI422()
64 IS_ALIGNED(dst_v, 16) && IS_ALIGNED(dst_stride_v, 16)) { in I420ToI422()
90 CopyRow(src_v, dst_v, halfwidth); in I420ToI422()
91 CopyRow(src_v, dst_v + dst_stride_v, halfwidth); in I420ToI422()
93 dst_v += dst_stride_v * 2; in I420ToI422()
96 CopyRow(src_v, dst_v, halfwidth); in I420ToI422()
113 uint8* dst_v, int dst_stride_v, in I420ToI444() argument
116 !dst_y || !dst_u || !dst_v || in I420ToI444()
125 dst_v = dst_v + (height - 1) * dst_stride_v; in I420ToI444()
151 src_v, dst_v); in I420ToI444()
163 uint8* dst_v, int dst_stride_v, in I420ToI411() argument
166 !dst_y || !dst_u || !dst_v || in I420ToI411()
175 dst_v = dst_v + (height - 1) * dst_stride_v; in I420ToI411()
202 src_v, dst_v); in I420ToI411()
1343 uint8* dst_v; in ConvertFromI420() local
1345 dst_v = dst_sample + width * height; in ConvertFromI420()
1346 dst_u = dst_v + halfwidth * halfheight; in ConvertFromI420()
1349 dst_v = dst_u + halfwidth * halfheight; in ConvertFromI420()
1356 dst_v, halfwidth, in ConvertFromI420()
1364 uint8* dst_v; in ConvertFromI420() local
1366 dst_v = dst_sample + width * height; in ConvertFromI420()
1367 dst_u = dst_v + halfwidth * height; in ConvertFromI420()
1370 dst_v = dst_u + halfwidth * height; in ConvertFromI420()
1377 dst_v, halfwidth, in ConvertFromI420()
1384 uint8* dst_v; in ConvertFromI420() local
1386 dst_v = dst_sample + width * height; in ConvertFromI420()
1387 dst_u = dst_v + width * height; in ConvertFromI420()
1390 dst_v = dst_u + width * height; in ConvertFromI420()
1397 dst_v, width, in ConvertFromI420()
1404 uint8* dst_v = dst_u + quarterwidth * height; in ConvertFromI420() local
1410 dst_v, quarterwidth, in ConvertFromI420()