mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
b234ae818b
Originally committed as revision 2505 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
13 lines
186 B
C
13 lines
186 B
C
/*
|
|
*
|
|
* rgb2rgb.h, Software RGB to RGB coverter
|
|
*
|
|
*/
|
|
|
|
#ifndef RGB2RGB_INCLUDED
|
|
#define RGB2RGB_INCLUDED
|
|
|
|
extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
|
|
|
#endif
|