NV12 to RGB
typedef unsigned char UINT8;typedef unsigned int UINT32;static UINT8 RTable[256][256];static UINT8 GTable[256][256][256];static UINT8 BTable[256][256];static void NV12_T_RGB_Table(){ int y, u, v, res; for (y = 0; y <= 255; y++) .