annotate postproc/rgb2rgb.h @ 6492:e7635c03910f

sync with mplayer xp - partial yvu9 support (copy only) - rgb 15/16 -> 24/32 converters - int->unsigned changes
author arpi
date Sat, 22 Jun 2002 08:49:45 +0000
parents f0fa3373f616
children f98313dcd428
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);
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
13 extern void rgb24to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
14 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
15 extern void rgb32to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
2721
nick
parents: 2718
diff changeset
16 extern void rgb32to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
nick
parents: 2718
diff changeset
17 extern void rgb32to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
18 extern void rgb15to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
19 extern void rgb15to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
20 extern void rgb15to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
21 extern void rgb16to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
22 extern void rgb16to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
2758
5e5cba50b1d0 rgb32tobgr32 now is documented ;)
nick
parents: 2732
diff changeset
23 extern void rgb32tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
24 extern void rgb24tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
25
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
26
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
27 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
28 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
29 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
30 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
31
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2721
diff changeset
32 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
33 unsigned int width, unsigned int height,
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
34 unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
5588
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
35 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
36 unsigned int width, unsigned int height,
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
37 unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
38 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
39 unsigned int width, unsigned int height,
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
40 unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
3633
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 2758
diff changeset
41 extern void rgb24toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 2758
diff changeset
42 unsigned int width, unsigned int height,
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 2758
diff changeset
43 unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
2701
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2697
diff changeset
44
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 3633
diff changeset
45 extern void interleaveBytes(uint8_t *src1, uint8_t *src2, uint8_t *dst,
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
46 unsigned width, unsigned height, unsigned src1Stride,
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
47 unsigned src2Stride, unsigned dstStride);
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 3633
diff changeset
48
0bd1c35aa42c byte interleaving for mga
michael
parents: 3633
diff changeset
49
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
50 #define MODE_RGB 0x1
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
51 #define MODE_BGR 0x2
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
52
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
53 typedef void (* yuv2rgb_fun) (uint8_t * image, uint8_t * py,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
54 uint8_t * pu, uint8_t * pv,
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
55 unsigned h_size, unsigned v_size,
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
56 unsigned rgb_stride, unsigned y_stride, unsigned uv_stride);
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
57
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
58 extern yuv2rgb_fun yuv2rgb;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
59
6492
e7635c03910f sync with mplayer xp
arpi
parents: 5588
diff changeset
60 void yuv2rgb_init (unsigned bpp, int mode);
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
61
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
62 #endif