summaryrefslogtreecommitdiffstats
path: root/postproc/rgb2rgb.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-04 19:50:29 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-04 19:50:29 +0000
commit57bfcdc19ded565836dbf06f24bef7f0bbd32fe1 (patch)
tree64e5bbda48dae2f2890e3dfad256cf80daf7dabd /postproc/rgb2rgb.h
parent533e296eeee817f20cddd5688204c6992c3b2333 (diff)
downloadmpv-57bfcdc19ded565836dbf06f24bef7f0bbd32fe1.tar.bz2
mpv-57bfcdc19ded565836dbf06f24bef7f0bbd32fe1.tar.xz
palette to bgr24
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2698 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r--postproc/rgb2rgb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h
index db6aff5f80..0f7c8141a0 100644
--- a/postproc/rgb2rgb.h
+++ b/postproc/rgb2rgb.h
@@ -16,6 +16,6 @@ void rgb32to15(uint8_t *src, uint8_t *dst, int src_size);
void palette8torgb32(uint8_t *src, uint8_t *dst, int src_size, uint8_t *palette);
void palette8torgb16(uint8_t *src, uint8_t *dst, int src_size, uint8_t *palette);
void palette8torgb15(uint8_t *src, uint8_t *dst, int src_size, uint8_t *palette);
-
+void palette8torgb24(uint8_t *src, uint8_t *dst, int src_size, uint8_t *palette);
#endif