summaryrefslogtreecommitdiff
path: root/libavutil/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/base64.h')
-rw-r--r--libavutil/base64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/base64.h b/libavutil/base64.h
index 843e362495..5bc8fe5754 100644
--- a/libavutil/base64.h
+++ b/libavutil/base64.h
@@ -27,13 +27,13 @@
* Decodes Base64.
* Parameter order is the same as strncpy().
*/
-int av_base64_decode(uint8_t * out, const char *in, int out_length);
+int av_base64_decode(uint8_t * out, const char *in, int out_size);
/**
* Encodes Base64.
* @param src data, not a string
* @param buf output string
*/
-char *av_base64_encode(char * buf, int buf_len, const uint8_t * src, int len);
+char *av_base64_encode(char * buf, int buf_size, const uint8_t * src, int size);
#endif /* AVUTIL_BASE64_H */