Miam-Player  0.8.0
A nice music player
base64.h File Reference
#include <stdint.h>

Go to the source code of this file.

Macros

#define AV_BASE64_DECODE_SIZE(x)   ((x) * 3LL / 4)
 
#define AV_BASE64_SIZE(x)   (((x)+2) / 3 * 4 + 1)
 

Functions

int av_base64_decode (uint8_t *out, const char *in, int out_size)
 
char * av_base64_encode (char *out, int out_size, const uint8_t *in, int in_size)