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