Mercurial > mplayer.hg
view postproc/rgb2rgb.h @ 2643:9d0a638e211a
divx4 2-pass support, -frames option
author | arpi |
---|---|
date | Sat, 03 Nov 2001 00:44:02 +0000 |
parents | 501752469c39 |
children | 794dec2fae64 |
line wrap: on
line source
/* * * 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