shithub: hj264

ref: 4968057b69842a4e3a73149fb26c01a25a69b935
dir: hj264/yuv.h

View raw version
typedef struct YUV YUV;

struct YUV {
	u8int *y, *u, *v;
	int ys, us, vs;
};

void xrgb2yuv420(u8int *bgrx, int w, int h, YUV *yuv);