2694
|
1 /*
|
2504
|
2 *
|
2506
|
3 * rgb2rgb.h, Software RGB to RGB convertor
|
2732
|
4 * pluralize by Software PAL8 to RGB convertor
|
|
5 * Software YUV to YUV convertor
|
|
6 * Software YUV to RGB convertor
|
2504
|
7 */
|
|
8
|
|
9 #ifndef RGB2RGB_INCLUDED
|
|
10 #define RGB2RGB_INCLUDED
|
|
11
|
2718
|
12 extern void rgb24to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
13 extern void rgb32to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
14 extern void rgb15to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2721
|
15 extern void rgb32to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
16 extern void rgb32to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
17 extern void rgb24to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
|
18 extern void rgb24to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
|
2758
|
19 extern void rgb32tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
|
2504
|
20
|
2694
|
21
|
2718
|
22 extern void palette8torgb32(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
|
|
23 extern void palette8torgb16(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
|
|
24 extern void palette8torgb15(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
|
|
25 extern void palette8torgb24(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
|
|
26
|
2723
|
27 extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
|
2725
|
28 unsigned int width, unsigned int height,
|
|
29 unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
|
2724
|
30 extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
|
2725
|
31 unsigned int width, unsigned int height,
|
|
32 unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
|
3633
|
33 extern void rgb24toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
|
|
34 unsigned int width, unsigned int height,
|
|
35 unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
|
2701
|
36
|
2732
|
37 #define MODE_RGB 0x1
|
|
38 #define MODE_BGR 0x2
|
|
39
|
|
40 typedef void (* yuv2rgb_fun) (uint8_t * image, uint8_t * py,
|
|
41 uint8_t * pu, uint8_t * pv,
|
|
42 int h_size, int v_size,
|
|
43 int rgb_stride, int y_stride, int uv_stride);
|
|
44
|
|
45 extern yuv2rgb_fun yuv2rgb;
|
|
46
|
|
47 void yuv2rgb_init (int bpp, int mode);
|
|
48
|
2504
|
49 #endif
|