Cosmetics: rename the "size" parameter of av_base64_encode() to "in_size".

Originally committed as revision 17071 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini
2009-02-08 21:16:36 +00:00
parent 1cc65cecb2
commit 5118bd441d
2 changed files with 5 additions and 5 deletions

View File

@ -34,6 +34,6 @@ int av_base64_decode(uint8_t * out, const char *in, int out_size);
* @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 */