2001-11-04 21:36:24 +02:00
|
|
|
/*
|
2001-10-28 12:17:57 +02:00
|
|
|
*
|
2001-10-28 12:45:42 +02:00
|
|
|
* rgb2rgb.h, Software RGB to RGB convertor
|
2001-10-28 12:17:57 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RGB2RGB_INCLUDED
|
|
|
|
#define RGB2RGB_INCLUDED
|
|
|
|
|
2001-11-05 19:35:28 +02:00
|
|
|
extern void rgb24to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
|
|
extern void rgb32to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
|
|
extern void rgb15to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2001-11-05 20:03:46 +02: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);
|
|
|
|
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-10-28 12:17:57 +02:00
|
|
|
|
2001-11-04 21:36:24 +02:00
|
|
|
|
2001-11-05 19:35:28 +02: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 20:26:49 +02:00
|
|
|
extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
|
|
|
|
int width, int height, int lumStride, int chromStride, int dstStride);
|
2001-11-05 20:50:58 +02:00
|
|
|
extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
|
|
|
|
int width, int height, int lumStride, int chromStride, int srcStride);
|
2001-11-05 02:45:55 +02:00
|
|
|
|
2001-10-28 12:17:57 +02:00
|
|
|
#endif
|