mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-22 07:13:20 +00:00
b238eb2e77
Originally committed as revision 2507 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
15 lines
323 B
C
15 lines
323 B
C
/*
|
|
*
|
|
* 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
|