diff base64.h @ 397:62575220eb1a libavutil

Mark the source buffer as "const"
author lucabe
date Tue, 30 Oct 2007 15:32:52 +0000
parents d0f3bb6e367e
children bd4052d9050c
line wrap: on
line diff
--- a/base64.h	Sat Oct 20 14:45:07 2007 +0000
+++ b/base64.h	Tue Oct 30 15:32:52 2007 +0000
@@ -35,6 +35,6 @@
  * @param src data, not a string
  * @param buf output string
  */
-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);
 
 #endif /* FFMPEG_BASE64_H */