Home | History | Annotate | Download | only in transcode

Lines Matching refs:u_dst

2163     unsigned char *y_dst, *u_dst, *v_dst;
2185 u_dst = (unsigned char *)(surface_p + surface_image.offsets[1]); /* UV offset for NV12 */
2196 memcpy(u_dst, u_src, picture_width*picture_height/2);
2202 u_dst[col * 2] = u_src[col];
2203 u_dst[col * 2 + 1] = v_src[col];
2206 u_dst += surface_image.pitches[1];