summaryrefslogtreecommitdiffstats
path: root/postproc/rgb2rgb.h
diff options
context:
space:
mode:
authornick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-04 11:51:36 +0000
committernick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-04 11:51:36 +0000
commit7c04b6b3c1338f26b8db1a23a8adb8813c60fc2e (patch)
treee8bc22761482a61f84182195e9e5679c2fffb964 /postproc/rgb2rgb.h
parent7e8ad962b7e3a8c20949f6e51840eb679ed811c4 (diff)
downloadmpv-7c04b6b3c1338f26b8db1a23a8adb8813c60fc2e.tar.bz2
mpv-7c04b6b3c1338f26b8db1a23a8adb8813c60fc2e.tar.xz
using const modifier
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2678 b3059339-0415-0410-9bf9-f77b7e298cf2
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