diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2007-03-19 00:48:47 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2007-03-19 00:48:47 +0000 |
commit | bd03c380ce67cffaaf3c456407cc98e02917ebf7 (patch) | |
tree | beccff1ab797befddbd59f9e744d57d847a443e1 /libavutil/base64.h | |
parent | 559fd1e79524ca47efde195e28feb4499dd48761 (diff) | |
download | ffmpeg-bd03c380ce67cffaaf3c456407cc98e02917ebf7.tar.gz |
expose av_base64_decode and av_base64_encode
Originally committed as revision 8448 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/base64.h')
-rw-r--r-- | libavutil/base64.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/base64.h b/libavutil/base64.h index 5658ee837a..3d905313cf 100644 --- a/libavutil/base64.h +++ b/libavutil/base64.h @@ -28,6 +28,7 @@ int av_base64_decode(uint8_t * out, const char *in, int out_length); /** * encodes base64 * @param src data, not a string + * @param buf output string */ -char *av_base64_encode(uint8_t * src, int len); +char *av_base64_encode(char * buf, int buf_len, uint8_t * src, int len); |