Lines Matching refs:src_rgb24
2564 int RGB24ToI420(const uint8_t* src_rgb24, in RGB24ToI420() argument
2576 void (*RGB24ToUVRow)(const uint8_t* src_rgb24, int src_stride_rgb24, in RGB24ToI420()
2579 void (*RGB24ToYRow)(const uint8_t* src_rgb24, uint8_t* dst_y, int width) = in RGB24ToI420()
2590 if (!src_rgb24 || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in RGB24ToI420()
2596 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToI420()
2705 RGB24ToUVRow(src_rgb24, src_stride_rgb24, dst_u, dst_v, width); in RGB24ToI420()
2706 RGB24ToYRow(src_rgb24, dst_y, width); in RGB24ToI420()
2707 RGB24ToYRow(src_rgb24 + src_stride_rgb24, dst_y + dst_stride_y, width); in RGB24ToI420()
2709 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToI420()
2710 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + row_size, width); in RGB24ToI420()
2715 src_rgb24 += src_stride_rgb24 * 2; in RGB24ToI420()
2722 RGB24ToUVRow(src_rgb24, 0, dst_u, dst_v, width); in RGB24ToI420()
2723 RGB24ToYRow(src_rgb24, dst_y, width); in RGB24ToI420()
2725 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToI420()
2746 int RGB24ToJ420(const uint8_t* src_rgb24, in RGB24ToJ420() argument
2758 void (*RGB24ToUVJRow)(const uint8_t* src_rgb24, int src_stride_rgb24, in RGB24ToJ420()
2761 void (*RGB24ToYJRow)(const uint8_t* src_rgb24, uint8_t* dst_y, int width) = in RGB24ToJ420()
2772 if (!src_rgb24 || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in RGB24ToJ420()
2778 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToJ420()
2883 RGB24ToUVJRow(src_rgb24, src_stride_rgb24, dst_u, dst_v, width); in RGB24ToJ420()
2884 RGB24ToYJRow(src_rgb24, dst_y, width); in RGB24ToJ420()
2885 RGB24ToYJRow(src_rgb24 + src_stride_rgb24, dst_y + dst_stride_y, width); in RGB24ToJ420()
2887 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToJ420()
2888 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + row_size, width); in RGB24ToJ420()
2893 src_rgb24 += src_stride_rgb24 * 2; in RGB24ToJ420()
2900 RGB24ToUVJRow(src_rgb24, 0, dst_u, dst_v, width); in RGB24ToJ420()
2901 RGB24ToYJRow(src_rgb24, dst_y, width); in RGB24ToJ420()
2903 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToJ420()
3855 int RGB24ToJ400(const uint8_t* src_rgb24, in RGB24ToJ400() argument
3862 void (*RGB24ToYJRow)(const uint8_t* src_rgb24, uint8_t* dst_yj, int width) = in RGB24ToJ400()
3864 if (!src_rgb24 || !dst_yj || width <= 0 || height == 0) { in RGB24ToJ400()
3869 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToJ400()
3933 RGB24ToYJRow(src_rgb24, dst_yj, width); in RGB24ToJ400()
3934 src_rgb24 += src_stride_rgb24; in RGB24ToJ400()