mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
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:
@ -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 */
|
||||
|
Reference in New Issue
Block a user