FFmpeg
|
Macros | |
#define | AV_BASE64_SIZE(x) (((x)+2) / 3 * 4 + 1) |
Calculate the output size needed to base64-encode x bytes to a null-terminated string. More... | |
Functions | |
int | av_base64_decode (uint8_t *out, const char *in, int out_size) |
Decode a base64-encoded string. More... | |
char * | av_base64_encode (char *out, int out_size, const uint8_t *in, int in_size) |
Encode data to base64 and null-terminate. More... | |
Detailed Description
Macro Definition Documentation
Calculate the output size needed to base64-encode x bytes to a null-terminated string.
Definition at line 61 of file base64.h.
Referenced by av_base64_encode(), do_adobe_auth(), ff_http_auth_create_response(), ff_rtsp_open_transport_ctx(), get_stats(), matroska_read_header(), and vp8_encode().
Function Documentation
int av_base64_decode | ( | uint8_t * | out, |
const char * | in, | ||
int | out_size | ||
) |
Decode a base64-encoded string.
- Parameters
-
out buffer for decoded data in null-terminated input string out_size size in bytes of the out buffer, must be at least 3/4 of the length of in
- Returns
- number of bytes written, or a negative value in case of invalid input
Definition at line 78 of file libavutil/base64.c.
Referenced by av_base64_encode(), data_open(), ff_srtp_set_crypto(), ff_wms_parse_sdp_a_line(), rdt_parse_b64buf(), sdp_parse_fmtp_config_h264(), submit_stats(), vpx_init(), and xiph_parse_fmtp_pair().
char* av_base64_encode | ( | char * | out, |
int | out_size, | ||
const uint8_t * | in, | ||
int | in_size | ||
) |
Encode data to base64 and null-terminate.
- Parameters
-
out buffer for encoded data out_size size in bytes of the out buffer (including the null terminator), must be at least AV_BASE64_SIZE(in_size) in input buffer containing the data to encode in_size size in bytes of the in buffer
- Returns
- out or NULL in case of error
Definition at line 137 of file libavutil/base64.c.
Referenced by av_base64_encode(), do_adobe_auth(), ff_http_auth_create_response(), ff_rtsp_open_transport_ctx(), get_stats(), matroska_read_header(), and vp8_encode().
Generated on Mon Nov 18 2024 06:52:10 for FFmpeg by 1.8.11