comparison postproc/rgb2rgb.h @ 10895:2da8559e5f33

reversed for cause of code obsolescence
author pl
date Sun, 21 Sep 2003 01:23:07 +0000
parents 7777dded6caa
children ede278d59026
comparison
equal deleted inserted replaced
10894:b6c37bd60d5e 10895:2da8559e5f33
7 */ 7 */
8 8
9 #ifndef RGB2RGB_INCLUDED 9 #ifndef RGB2RGB_INCLUDED
10 #define RGB2RGB_INCLUDED 10 #define RGB2RGB_INCLUDED
11 11
12 #include <stdio.h> 12 // Note: do not fix the dependence on stdio.h
13 13
14 /* A full collection of rgb to rgb(bgr) convertors */ 14 /* A full collection of rgb to rgb(bgr) convertors */
15 extern void (*rgb24to32)(const uint8_t *src,uint8_t *dst,unsigned src_size); 15 extern void (*rgb24to32)(const uint8_t *src,uint8_t *dst,unsigned src_size);
16 extern void (*rgb24to16)(const uint8_t *src,uint8_t *dst,unsigned src_size); 16 extern void (*rgb24to16)(const uint8_t *src,uint8_t *dst,unsigned src_size);
17 extern void (*rgb24to15)(const uint8_t *src,uint8_t *dst,unsigned src_size); 17 extern void (*rgb24to15)(const uint8_t *src,uint8_t *dst,unsigned src_size);