21 #ifndef AVUTIL_BASE64_H 22 #define AVUTIL_BASE64_H 48 #define AV_BASE64_DECODE_SIZE(x) ((x) * 3LL / 4) 60 char *
av_base64_encode(
char *out,
int out_size,
const uint8_t *in,
int in_size);
66 #define AV_BASE64_SIZE(x) (((x)+2) / 3 * 4 + 1) char * av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size)
int av_base64_decode(uint8_t *out, const char *in, int out_size)