diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-04-13 00:48:21 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-04-13 00:48:21 +0000 |
commit | 74d3583521de27a6c6018a647362a1974f3e2b58 (patch) | |
tree | 10d730dddd5a5ce7e01542ed83fa42c7448b556f /postproc/rgb2rgb.h | |
parent | 096172d435b8c1a8136fbc57845515b900f26bc0 (diff) | |
download | ffmpeg-74d3583521de27a6c6018a647362a1974f3e2b58.tar.gz |
rgb24->bgr24
Originally committed as revision 5583 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r-- | postproc/rgb2rgb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h index e5dd3beaf5..244ed1ed46 100644 --- a/postproc/rgb2rgb.h +++ b/postproc/rgb2rgb.h @@ -17,6 +17,7 @@ extern void rgb32to15(const uint8_t *src,uint8_t *dst,unsigned src_size); extern void rgb24to16(const uint8_t *src,uint8_t *dst,unsigned src_size); extern void rgb24to15(const uint8_t *src,uint8_t *dst,unsigned src_size); extern void rgb32tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size); +extern void rgb24tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size); extern void palette8torgb32(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); |