comparison base64.h @ 320:ca1f5d65e653 libavutil

expose av_base64_decode and av_base64_encode
author lu_zero
date Mon, 19 Mar 2007 00:48:47 +0000
parents 9a977b2c7069
children f21d1907d47c
comparison
equal deleted inserted replaced
319:aac7ff53ef86 320:ca1f5d65e653
26 int av_base64_decode(uint8_t * out, const char *in, int out_length); 26 int av_base64_decode(uint8_t * out, const char *in, int out_length);
27 27
28 /** 28 /**
29 * encodes base64 29 * encodes base64
30 * @param src data, not a string 30 * @param src data, not a string
31 * @param buf output string
31 */ 32 */
32 char *av_base64_encode(uint8_t * src, int len); 33 char *av_base64_encode(char * buf, int buf_len, uint8_t * src, int len);
33 34