# HG changeset patch # User stefano # Date 1234127796 0 # Node ID cc7c1ea68a522355c5f647a06fd5b21dd2e3ef97 # Parent 50112fafa1efac9cbb1ee9dc848f21c3e456f77a Cosmetics: rename the "size" parameter of av_base64_encode() to "in_size". diff -r 50112fafa1ef -r cc7c1ea68a52 base64.c --- a/base64.c Sun Feb 08 21:13:11 2009 +0000 +++ b/base64.c Sun Feb 08 21:16:36 2009 +0000 @@ -69,17 +69,17 @@ * Fixed edge cases and made it work from data (vs. strings) by Ryan. *****************************************************************************/ -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) { static const char b64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; char *ret, *dst; unsigned i_bits = 0; int i_shift = 0; - int bytes_remaining = size; + int bytes_remaining = in_size; - if (size >= UINT_MAX / 4 || - out_size < (size+2) / 3 * 4 + 1) + if (in_size >= UINT_MAX / 4 || + out_size < (in_size+2) / 3 * 4 + 1) return NULL; ret = dst = out; while (bytes_remaining) { diff -r 50112fafa1ef -r cc7c1ea68a52 base64.h --- 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 */