annotate postproc/rgb2rgb.h @ 3657:af1f8e2d693a

added libavcodec support (mjpeg,h263,rv10,mpeg1 codecs tested&working) and added -ffourcc option (force fourcc in ouput)
author alex
date Sat, 22 Dec 2001 14:32:08 +0000
parents e81bfc0826b1
children 0bd1c35aa42c
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);
2758
5e5cba50b1d0 rgb32tobgr32 now is documented ;)
nick
parents: 2732
diff changeset
19 extern void rgb32tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
20
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
21
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
22 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
23 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
24 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
25 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
26
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2721
diff changeset
27 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
28 unsigned int width, unsigned int height,
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
29 unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
30 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
31 unsigned int width, unsigned int height,
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
32 unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
3633
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 2758
diff changeset
33 extern void rgb24toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 2758
diff changeset
34 unsigned int width, unsigned int height,
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 2758
diff changeset
35 unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
2701
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2697
diff changeset
36
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
37 #define MODE_RGB 0x1
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
38 #define MODE_BGR 0x2
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
39
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
40 typedef void (* yuv2rgb_fun) (uint8_t * image, uint8_t * py,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
41 uint8_t * pu, uint8_t * pv,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
42 int h_size, int v_size,
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
43 int rgb_stride, int y_stride, int uv_stride);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
44
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
45 extern yuv2rgb_fun yuv2rgb;
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
46
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
47 void yuv2rgb_init (int bpp, int mode);
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
48
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
49 #endif