Lines Matching refs:src_yuy2
747 void YUY2ToUVRow_C(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToUVRow_C() argument
751 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C()
752 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C()
753 src_yuy2 += 4; in YUY2ToUVRow_C()
760 void YUY2ToUV422Row_C(const uint8* src_yuy2, in YUY2ToUV422Row_C() argument
764 dst_u[0] = src_yuy2[1]; in YUY2ToUV422Row_C()
765 dst_v[0] = src_yuy2[3]; in YUY2ToUV422Row_C()
766 src_yuy2 += 4; in YUY2ToUV422Row_C()
773 void YUY2ToYRow_C(const uint8* src_yuy2, uint8* dst_y, int width) { in YUY2ToYRow_C() argument
776 dst_y[x] = src_yuy2[0]; in YUY2ToYRow_C()
777 dst_y[x + 1] = src_yuy2[2]; in YUY2ToYRow_C()
778 src_yuy2 += 4; in YUY2ToYRow_C()
781 dst_y[width - 1] = src_yuy2[0]; in YUY2ToYRow_C()