annotate postproc/rgb2rgb.h @ 2732:ae79207a3055

Move yuv2rgb to postprocess
author nick
date Tue, 06 Nov 2001 11:22:40 +0000
parents 5bba527c9a4c
children 5e5cba50b1d0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
1 /*
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
2 *
2506
501752469c39 vo_vesa: more rgb2rgb support
nick
parents: 2505
diff changeset
3 * rgb2rgb.h, Software RGB to RGB convertor
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
4 * pluralize by Software PAL8 to RGB convertor
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
5 * Software YUV to YUV convertor
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
6 * Software YUV to RGB convertor
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
7 */
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
8
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
9 #ifndef RGB2RGB_INCLUDED
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
10 #define RGB2RGB_INCLUDED
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
11
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
12 extern void rgb24to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
13 extern void rgb32to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
14 extern void rgb15to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
2721
nick
parents: 2718
diff changeset
15 extern void rgb32to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
nick
parents: 2718
diff changeset
16 extern void rgb32to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
nick
parents: 2718
diff changeset
17 extern void rgb24to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
nick
parents: 2718
diff changeset
18 extern void rgb24to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
19
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
20
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
21 extern void palette8torgb32(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
22 extern void palette8torgb16(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
23 extern void palette8torgb15(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
24 extern void palette8torgb24(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
25
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2721
diff changeset
26 extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
2725
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
27 unsigned int width, unsigned int height,
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
28 unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
29 extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
2725
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
30 unsigned int width, unsigned int height,
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
31 unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
2701
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2697
diff changeset
32
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
33 #define MODE_RGB 0x1
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
34 #define MODE_BGR 0x2
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
35
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
36 typedef void (* yuv2rgb_fun) (uint8_t * image, uint8_t * py,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
37 uint8_t * pu, uint8_t * pv,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
38 int h_size, int v_size,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
39 int rgb_stride, int y_stride, int uv_stride);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
40
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
41 extern yuv2rgb_fun yuv2rgb;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
42
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
43 void yuv2rgb_init (int bpp, int mode);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
44
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
45 #endif