diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-08 21:08:42 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-08 21:08:42 +0000 |
commit | 61ccbc52ea0e963630688204fcefe28c876ca480 (patch) | |
tree | 8b7e14713ca36cf0b23f06fb875f0bfa8106e21f /libavutil/base64.h | |
parent | 94027d3bdd1a4cb7fef47035a67a894ca70e4ab8 (diff) | |
download | ffmpeg-61ccbc52ea0e963630688204fcefe28c876ca480.tar.gz |
Cosmetics: consistently prefer "size" over "len"/"length" for the
variable names.
Originally committed as revision 17067 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/base64.h')
-rw-r--r-- | libavutil/base64.h | 4 |
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 */ |