shithub: hj264

ref: 97b0ebb4108acac122371253a54785ef54281648
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);