comparison 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
comparison
equal deleted inserted replaced
396:ba659469f48f 397:62575220eb1a
33 /** 33 /**
34 * encodes base64 34 * encodes base64
35 * @param src data, not a string 35 * @param src data, not a string
36 * @param buf output string 36 * @param buf output string
37 */ 37 */
38 char *av_base64_encode(char * buf, int buf_len, uint8_t * src, int len); 38 char *av_base64_encode(char * buf, int buf_len, const uint8_t * src, int len);
39 39
40 #endif /* FFMPEG_BASE64_H */ 40 #endif /* FFMPEG_BASE64_H */