Mercurial > mplayer.hg
annotate postproc/rgb2rgb.h @ 2637:8101229be3a5
code cleanup
author | nick |
---|---|
date | Fri, 02 Nov 2001 18:24:25 +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 |