Lines Matching refs:src_rgba
1100 int RGBAToI420(const uint8* src_rgba, int src_stride_rgba,
1105 if (!src_rgba ||
1113 src_rgba = src_rgba + (height - 1) * src_stride_rgba;
1116 void (*RGBAToYRow)(const uint8* src_rgba, uint8* dst_y, int pix);
1131 if (IS_ALIGNED(src_rgba, 16) && IS_ALIGNED(src_stride_rgba, 16)) {
1142 RGBAToUVRow(src_rgba, src_stride_rgba, dst_u, dst_v, width);
1143 RGBAToYRow(src_rgba, dst_y, width);
1144 RGBAToYRow(src_rgba + src_stride_rgba, dst_y + dst_stride_y, width);
1145 src_rgba += src_stride_rgba * 2;
1151 RGBAToUVRow(src_rgba, 0, dst_u, dst_v, width);
1152 RGBAToYRow(src_rgba, dst_y, width);