comparison postproc/rgb2rgb.h @ 10890:7777dded6caa

printf() requires stdio.h
author pl
date Sat, 20 Sep 2003 11:57:42 +0000
parents 35f52ad860a0
children 2da8559e5f33
comparison
equal deleted inserted replaced
10889:73e064cfcbb7 10890:7777dded6caa
6 * Software YUV to RGB convertor 6 * Software YUV to RGB convertor
7 */ 7 */
8 8
9 #ifndef RGB2RGB_INCLUDED 9 #ifndef RGB2RGB_INCLUDED
10 #define RGB2RGB_INCLUDED 10 #define RGB2RGB_INCLUDED
11
12 #include <stdio.h>
11 13
12 /* A full collection of rgb to rgb(bgr) convertors */ 14 /* A full collection of rgb to rgb(bgr) convertors */
13 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);
14 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);
15 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);