Cosmetics: prefer out/in over buf/src for the parameter names of

av_base64_encode(), for consistency/readability reasons.

Originally committed as revision 17069 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini
2009-02-08 21:13:11 +00:00
parent 18099ade6f
commit 52ef50a080
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 * buf, int buf_size, const uint8_t * src, int size);
char *av_base64_encode(char *out, int out_size, const uint8_t *in, int size);
#endif /* AVUTIL_BASE64_H */