2010-09-22 03:47:11 +02:00
|
|
|
//yuv420sp2rgb.h
|
|
|
|
#ifndef YUV420SP2RGB_H
|
|
|
|
#define YUV420SP2RGB_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void color_convert_common(
|
2010-11-28 06:41:50 +01:00
|
|
|
const unsigned char *pY, const unsigned char *pUV,
|
2010-09-22 03:47:11 +02:00
|
|
|
int width, int height, unsigned char *buffer,
|
|
|
|
int grey);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|