diff base64.h @ 658:cc7c1ea68a52 libavutil

Cosmetics: rename the "size" parameter of av_base64_encode() to "in_size".
author stefano
date Sun, 08 Feb 2009 21:16:36 +0000
parents 50112fafa1ef
children d3cd35bec3d0
line wrap: on
line diff
--- a/base64.h	Sun Feb 08 21:13:11 2009 +0000
+++ b/base64.h	Sun Feb 08 21:16:36 2009 +0000
@@ -34,6 +34,6 @@
  * @param src data, not a string
  * @param buf output string
  */
-char *av_base64_encode(char *out, int out_size, const uint8_t *in, int size);
+char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size);
 
 #endif /* AVUTIL_BASE64_H */