1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-02 12:20:57 +00:00
mpv/postproc/rgb2rgb.h
nick 7c04b6b3c1 using const modifier
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2678 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-11-04 11:51:36 +00:00

15 lines
341 B
C

/*
*
* 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