comparison postproc/rgb2rgb.h @ 2505:2aaa11d22f91

vo_vesa: more rgb2rgb support
author nick
date Sun, 28 Oct 2001 10:28:08 +0000
parents 13e1c5ab417a
children 501752469c39
comparison
equal deleted inserted replaced
2504:13e1c5ab417a 2505:2aaa11d22f91
1 /* 1 /*
2 * 2 *
3 * rgb2rgb.h, Software RGB to RGB coverter 3 * rgb2rgb.h, Software RGB to RGB converter
4 * 4 *
5 */ 5 */
6 6
7 #ifndef RGB2RGB_INCLUDED 7 #ifndef RGB2RGB_INCLUDED
8 #define RGB2RGB_INCLUDED 8 #define RGB2RGB_INCLUDED
9 9
10 extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size); 10 extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
11 extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size);
11 12
12 #endif 13 #endif