2001-11-04 19:36:24 +00:00
|
|
|
/*
|
2001-10-28 10:17:57 +00:00
|
|
|
*
|
2001-10-28 10:45:42 +00:00
|
|
|
* rgb2rgb.h, Software RGB to RGB convertor
|
2001-11-06 11:22:40 +00:00
|
|
|
* pluralize by Software PAL8 to RGB convertor
|
|
|
|
* Software YUV to YUV convertor
|
|
|
|
* Software YUV to RGB convertor
|
2001-10-28 10:17:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RGB2RGB_INCLUDED
|
|
|
|
#define RGB2RGB_INCLUDED
|
|
|
|
|
2002-06-29 21:26:15 +00:00
|
|
|
/* A full collection of rgb to rgb(bgr) convertors */
|
2001-11-05 17:35:28 +00:00
|
|
|
extern void rgb24to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2002-06-22 08:49:45 +00:00
|
|
|
extern void rgb24to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
|
|
extern void rgb24to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2001-11-05 17:35:28 +00:00
|
|
|
extern void rgb32to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2001-11-05 18:03:46 +00:00
|
|
|
extern void rgb32to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
|
|
extern void rgb32to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2002-06-22 08:49:45 +00:00
|
|
|
extern void rgb15to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
|
|
extern void rgb15to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
|
|
extern void rgb15to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2002-06-29 21:26:15 +00:00
|
|
|
extern void rgb16to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2002-06-22 08:49:45 +00:00
|
|
|
extern void rgb16to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
|
|
extern void rgb16to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2002-06-29 21:26:15 +00:00
|
|
|
extern void rgb24tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
2002-04-13 00:48:21 +00:00
|
|
|
extern void rgb24tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
2002-06-29 21:26:15 +00:00
|
|
|
extern void rgb24tobgr16(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb24tobgr15(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb32tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb32tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb32tobgr16(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb32tobgr15(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb16tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb16tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb16tobgr16(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb16tobgr15(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb15tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb15tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb15tobgr16(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb15tobgr15(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
|
|
|
extern void rgb8tobgr8(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
2001-10-28 10:17:57 +00:00
|
|
|
|
2001-11-04 19:36:24 +00:00
|
|
|
|
2001-11-05 17:35:28 +00:00
|
|
|
extern void palette8torgb32(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
|
|
|
|
extern void palette8torgb16(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
|
|
|
|
extern void palette8torgb15(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
|
|
|
|
extern void palette8torgb24(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
|
|
|
|
|
2001-11-05 18:26:49 +00:00
|
|
|
extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
|
2002-04-13 02:21:12 +00:00
|
|
|
unsigned int width, unsigned int height,
|
|
|
|
unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
|
|
|
|
extern void yuv422ptoyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
|
2001-11-05 19:55:11 +00:00
|
|
|
unsigned int width, unsigned int height,
|
|
|
|
unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
|
2001-11-05 18:50:58 +00:00
|
|
|
extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
|
2001-11-05 19:55:11 +00:00
|
|
|
unsigned int width, unsigned int height,
|
|
|
|
unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
|
2001-12-20 17:30:59 +00:00
|
|
|
extern void rgb24toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
|
|
|
|
unsigned int width, unsigned int height,
|
|
|
|
unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
|
2002-06-27 23:48:53 +00:00
|
|
|
extern void planar2x(const uint8_t *src, uint8_t *dst, int width, int height, int srcStride, int dstStride);
|
2001-11-05 00:45:55 +00:00
|
|
|
|
2002-03-25 16:35:24 +00:00
|
|
|
extern void interleaveBytes(uint8_t *src1, uint8_t *src2, uint8_t *dst,
|
2002-06-22 08:49:45 +00:00
|
|
|
unsigned width, unsigned height, unsigned src1Stride,
|
|
|
|
unsigned src2Stride, unsigned dstStride);
|
2002-06-29 21:26:15 +00:00
|
|
|
|
|
|
|
extern void vu9_to_vu12(const uint8_t *src1, const uint8_t *src2,
|
|
|
|
uint8_t *dst1, uint8_t *dst2,
|
|
|
|
unsigned width, unsigned height,
|
|
|
|
unsigned srcStride1, unsigned srcStride2,
|
|
|
|
unsigned dstStride1, unsigned dstStride2);
|
|
|
|
|
|
|
|
extern void yvu9_to_yuy2(const uint8_t *src1, const uint8_t *src2, const uint8_t *src3,
|
|
|
|
uint8_t *dst,
|
|
|
|
unsigned width, unsigned height,
|
|
|
|
unsigned srcStride1, unsigned srcStride2,
|
|
|
|
unsigned srcStride3, unsigned dstStride);
|
2002-03-25 16:35:24 +00:00
|
|
|
|
|
|
|
|
2001-11-06 11:22:40 +00:00
|
|
|
#define MODE_RGB 0x1
|
|
|
|
#define MODE_BGR 0x2
|
|
|
|
|
|
|
|
typedef void (* yuv2rgb_fun) (uint8_t * image, uint8_t * py,
|
|
|
|
uint8_t * pu, uint8_t * pv,
|
2002-06-22 08:49:45 +00:00
|
|
|
unsigned h_size, unsigned v_size,
|
|
|
|
unsigned rgb_stride, unsigned y_stride, unsigned uv_stride);
|
2001-11-06 11:22:40 +00:00
|
|
|
|
|
|
|
extern yuv2rgb_fun yuv2rgb;
|
|
|
|
|
2002-06-22 08:49:45 +00:00
|
|
|
void yuv2rgb_init (unsigned bpp, int mode);
|
2001-11-06 11:22:40 +00:00
|
|
|
|
2001-10-28 10:17:57 +00:00
|
|
|
#endif
|