summaryrefslogtreecommitdiff
path: root/postproc/rgb2rgb.h
blob: 259bfa6b75a456cb0366c448b410c3166090ed6e (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(const uint8_t *src,uint8_t *dst,uint32_t src_size);
extern void rgb32to24(const uint8_t *src,uint8_t *dst,uint32_t src_size);
extern void rgb15to16(const uint8_t *src,uint8_t *dst,uint32_t src_size);

#endif