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

#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);
extern void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size);

#endif