]> git.sesse.net Git - ffmpeg/blob - postproc/rgb2rgb.h
More standards compilance
[ffmpeg] / postproc / rgb2rgb.h
1 /*
2  *
3  *  rgb2rgb.h, Software RGB to RGB convertor
4  *
5  */
6
7 #ifndef RGB2RGB_INCLUDED
8 #define RGB2RGB_INCLUDED
9
10 extern void rgb24to32(const uint8_t *src,uint8_t *dst,uint32_t src_size);
11 extern void rgb32to24(const uint8_t *src,uint8_t *dst,uint32_t src_size);
12 extern void rgb15to16(const uint8_t *src,uint8_t *dst,uint32_t src_size);
13 extern void rgb32to16(const uint8_t *src,uint8_t *dst,uint32_t num_pixels);
14 extern void rgb32to15(const uint8_t *src,uint8_t *dst,uint32_t num_pixels);
15
16 extern void palette8torgb32(const uint8_t *src, uint8_t *dst, uint32_t num_pixels, const uint8_t *palette);
17 extern void palette8torgb16(const uint8_t *src, uint8_t *dst, uint32_t num_pixels, const uint8_t *palette);
18 extern void palette8torgb15(const uint8_t *src, uint8_t *dst, uint32_t num_pixels, const uint8_t *palette);
19 extern void palette8torgb24(const uint8_t *src, uint8_t *dst, uint32_t num_pixels, const uint8_t *palette);
20
21 extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, uint32_t num_pixels);
22 extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst, uint32_t num_pixels);
23
24
25 #endif