Mercurial > mplayer.hg
view postproc/rgb2rgb.h @ 2692:b8e628b7a029
Minor notes
author | nick |
---|---|
date | Sun, 04 Nov 2001 18:04:45 +0000 |
parents | 794dec2fae64 |
children | 2924350d92ed |
line wrap: on
line source
/* * * 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