summaryrefslogtreecommitdiff
path: root/postproc/rgb2rgb.h
diff options
context:
space:
mode:
authorNick Kurshev <nickols_k@mail.ru>2001-11-04 11:51:36 +0000
committerNick Kurshev <nickols_k@mail.ru>2001-11-04 11:51:36 +0000
commit569931477e62f246e420fb4c1ee031dc6d40571e (patch)
tree83572cde208126c148bdba2b7849a70844ac4ca6 /postproc/rgb2rgb.h
parent96034638d14cd4adec0dba1e2c61e52248fabf93 (diff)
using const modifier
Originally committed as revision 2678 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r--postproc/rgb2rgb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h
index 69cc9cc2a4..259bfa6b75 100644
--- a/postproc/rgb2rgb.h
+++ b/postproc/rgb2rgb.h
@@ -7,8 +7,8 @@
#ifndef RGB2RGB_INCLUDED
#define RGB2RGB_INCLUDED
-extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
-extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size);
-extern void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size);
+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