diff options
author | Arpi <arpi@thot.banki.hu> | 2002-09-22 02:33:28 +0000 |
---|---|---|
committer | Arpi <arpi@thot.banki.hu> | 2002-09-22 02:33:28 +0000 |
commit | 18a7b2a8734c0b14aa8b0b57e5f5ba0f3c688a9f (patch) | |
tree | e49d5742e6491a3474da0db2dc0262fe3c4974ea /postproc | |
parent | 1dbb6d9026e75e1df2ebd919f071d9a872984a80 (diff) | |
download | ffmpeg-18a7b2a8734c0b14aa8b0b57e5f5ba0f3c688a9f.tar.gz |
tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
Originally committed as revision 7473 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/rgb2rgb.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h index 1e1064d3f3..a36f267f1f 100644 --- a/postproc/rgb2rgb.h +++ b/postproc/rgb2rgb.h @@ -42,9 +42,13 @@ extern void rgb8tobgr8(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); +extern void palette8tobgr32(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); +extern void palette8torgb24(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); +extern void palette8tobgr24(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); extern void palette8torgb16(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); +extern void palette8tobgr16(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); extern void palette8torgb15(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); -extern void palette8torgb24(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); +extern void palette8tobgr15(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, unsigned int width, unsigned int height, |