]> git.sesse.net Git - ffmpeg/blob - postproc/rgb2rgb.h
width or height %16 != 0 bugfix
[ffmpeg] / postproc / rgb2rgb.h
1 /*
2  *
3  *  rgb2rgb.h, Software RGB to RGB convertor
4  *  pluralize by Software PAL8 to RGB convertor
5  *               Software YUV to YUV convertor
6  *               Software YUV to RGB convertor
7  */
8
9 #ifndef RGB2RGB_INCLUDED
10 #define RGB2RGB_INCLUDED
11
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);
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);
19 extern void rgb32tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
20
21
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
27 extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
28         unsigned int width, unsigned int height,
29         unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
30 extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
31         unsigned int width, unsigned int height,
32         unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
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);
36
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
49 #endif