annotate postproc/rgb2rgb.h @ 2555:66837325b929
config.h cleanup, few things added to steram/demuxer headers
author |
arpi |
date |
Tue, 30 Oct 2001 17:03:11 +0000 |
parents |
501752469c39 |
children |
794dec2fae64 |
rev |
line source |
2504
|
1 /*
|
|
2 *
|
2506
|
3 * rgb2rgb.h, Software RGB to RGB convertor
|
2504
|
4 *
|
|
5 */
|
|
6
|
|
7 #ifndef RGB2RGB_INCLUDED
|
|
8 #define RGB2RGB_INCLUDED
|
|
9
|
|
10 extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
2505
|
11 extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
2506
|
12 extern void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
2504
|
13
|
|
14 #endif
|