ref: 70b1cf8ab9292b471f6414b17895f583bc61ccfc dir: /yuv.h/
typedef struct YUV YUV; struct YUV { u8int *y, *u, *v; int ys, us, vs; }; void xrgb2yuv420(u8int *bgrx, int w, int h, YUV *yuv);