#include <stdint.h>
Go to the source code of this file.
Functions | |
int | av_base64_decode (uint8_t *out, const char *in, int out_length) |
decodes base64 param order as strncpy() | |
char * | av_base64_encode (char *buf, int buf_len, const uint8_t *src, int len) |
encodes base64 |
int av_base64_decode | ( | uint8_t * | out, | |
const char * | in, | |||
int | out_length | |||
) |
decodes base64 param order as strncpy()
Definition at line 46 of file base64.c.
Referenced by sdp_parse_fmtp_config_h264().
char* av_base64_encode | ( | char * | buf, | |
int | buf_len, | |||
const uint8_t * | src, | |||
int | len | |||
) |
encodes base64
src | data, not a string | |
buf | output string |
Definition at line 73 of file base64.c.
Referenced by http_connect().