Lines Matching defs:src_argb4444
1482 int ARGB4444ToI420(const uint8* src_argb4444,
1494 void (*ARGB4444ToUVRow)(const uint8* src_argb4444, int src_stride_argb4444,
1497 void (*ARGB4444ToYRow)(const uint8* src_argb4444, uint8* dst_y, int width) =
1507 if (!src_argb4444 || !dst_y || !dst_u || !dst_v || width <= 0 ||
1514 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444;
1599 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width);
1600 ARGB4444ToYRow(src_argb4444, dst_y, width);
1601 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y,
1604 ARGB4444ToARGBRow(src_argb4444, row, width);
1605 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize,
1611 src_argb4444 += src_stride_argb4444 * 2;
1618 ARGB4444ToUVRow(src_argb4444, 0, dst_u, dst_v, width);
1619 ARGB4444ToYRow(src_argb4444, dst_y, width);
1621 ARGB4444ToARGBRow(src_argb4444, row, width);