From e76e2bbc0937ff456e1f4ad5b98851fe6ccc8005 Mon Sep 17 00:00:00 2001 From: Luca Abeni Date: Tue, 30 Oct 2007 15:32:52 +0000 Subject: Mark the source buffer as "const" Originally committed as revision 10877 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/base64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/base64.c') diff --git a/libavutil/base64.c b/libavutil/base64.c index bee800c824..09dcf99567 100644 --- a/libavutil/base64.c +++ b/libavutil/base64.c @@ -70,7 +70,7 @@ int av_base64_decode(uint8_t * out, const char *in, int out_length) * fixed edge cases and made it work from data (vs. strings) by ryan. *****************************************************************************/ -char *av_base64_encode(char * buf, int buf_len, uint8_t * src, int len) +char *av_base64_encode(char * buf, int buf_len, const uint8_t * src, int len) { static const char b64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; -- cgit v1.2.3