summaryrefslogtreecommitdiffstats
path: root/postproc/rgb2rgb.h
blob: 7d81ef171a85a976e057919096d3d3afd4338c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 
 *
 *  rgb2rgb.h, Software RGB to RGB converter
 *
 */

#ifndef RGB2RGB_INCLUDED
#define RGB2RGB_INCLUDED

extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size);

#endif