原文地址:http://www.mingjianhua.com/post/57.html
YUV 与RGB互转的函数
头文件
//colorconvert.h
#ifndef _COLORCONVERT_H
#define _COLORCONVERT_H 1
void InitConvtTbl();
void i420_to_rgb24(unsigned char *src, unsigned char *dst, int width,int height);
void rgb24_to_i420(unsigned char *src,unsigned char *dst,int width,int height);
#endif
CPP文件