annotate postproc/rgb2rgb.h @ 7176:42222161de9b

2*10l to me
author arpi
date Fri, 30 Aug 2002 20:59:21 +0000
parents 50b5d8367318
children c4434bdf6e51
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
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
12 /* A full collection of rgb to rgb(bgr) convertors */
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
13 extern void rgb24to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
14 extern void rgb24to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
15 extern void rgb24to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
16 extern void rgb32to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
2721
nick
parents: 2718
diff changeset
17 extern void rgb32to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
nick
parents: 2718
diff changeset
18 extern void rgb32to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
19 extern void rgb15to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
20 extern void rgb15to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
21 extern void rgb15to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
22 extern void rgb16to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
23 extern void rgb16to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
24 extern void rgb16to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
25 extern void rgb24tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
26 extern void rgb24tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
27 extern void rgb24tobgr16(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
28 extern void rgb24tobgr15(const uint8_t *src, uint8_t *dst, unsigned src_size);
2758
5e5cba50b1d0 rgb32tobgr32 now is documented ;)
nick
parents: 2732
diff changeset
29 extern void rgb32tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
30 extern void rgb32tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
31 extern void rgb32tobgr16(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
32 extern void rgb32tobgr15(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
33 extern void rgb16tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
34 extern void rgb16tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
35 extern void rgb16tobgr16(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
36 extern void rgb16tobgr15(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
37 extern void rgb15tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
38 extern void rgb15tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
39 extern void rgb15tobgr16(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
40 extern void rgb15tobgr15(const uint8_t *src, uint8_t *dst, unsigned src_size);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
41 extern void rgb8tobgr8(const uint8_t *src, uint8_t *dst, unsigned src_size);
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
42
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
43
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
44 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
45 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
46 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
47 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
48
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2721
diff changeset
49 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
50 unsigned int width, unsigned int height,
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
51 unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
5588
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
52 extern void yuv422ptoyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
53 unsigned int width, unsigned int height,
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
54 unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
55 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
56 unsigned int width, unsigned int height,
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
57 unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
3633
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 2758
diff changeset
58 extern void rgb24toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 2758
diff changeset
59 unsigned int width, unsigned int height,
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 2758
diff changeset
60 unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
61 extern void planar2x(const uint8_t *src, uint8_t *dst, int width, int height, int srcStride, int dstStride);
2701
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2697
diff changeset
62
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 3633
diff changeset
63 extern void interleaveBytes(uint8_t *src1, uint8_t *src2, uint8_t *dst,
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
64 unsigned width, unsigned height, unsigned src1Stride,
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
65 unsigned src2Stride, unsigned dstStride);
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
66
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
67 extern void vu9_to_vu12(const uint8_t *src1, const uint8_t *src2,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
68 uint8_t *dst1, uint8_t *dst2,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
69 unsigned width, unsigned height,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
70 unsigned srcStride1, unsigned srcStride2,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
71 unsigned dstStride1, unsigned dstStride2);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
72
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
73 extern void yvu9_to_yuy2(const uint8_t *src1, const uint8_t *src2, const uint8_t *src3,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
74 uint8_t *dst,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
75 unsigned width, unsigned height,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
76 unsigned srcStride1, unsigned srcStride2,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6582
diff changeset
77 unsigned srcStride3, unsigned dstStride);
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 3633
diff changeset
78
0bd1c35aa42c byte interleaving for mga
michael
parents: 3633
diff changeset
79
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
80 #define MODE_RGB 0x1
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
81 #define MODE_BGR 0x2
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
82
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
83 typedef void (* yuv2rgb_fun) (uint8_t * image, uint8_t * py,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
84 uint8_t * pu, uint8_t * pv,
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
85 unsigned h_size, unsigned v_size,
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
86 unsigned rgb_stride, unsigned y_stride, unsigned uv_stride);
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
87
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
88 extern yuv2rgb_fun yuv2rgb;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
89
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
90 void yuv2rgb_init (unsigned bpp, int mode);
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
91
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
92 #endif