![]() |
libgpac
Documentation of the core library of GPAC
|
Base 16 and 64 coding. More...
Collaboration diagram for base64 encoding:Functions | |
| u32 | gf_base64_encode (const u8 *in_buffer, u32 in_buffer_size, u8 *out_buffer, u32 out_buffer_size) |
| base64 encoder | |
| u32 | gf_base64_decode (u8 *in_buffer, u32 in_buffer_size, u8 *out_buffer, u32 out_buffer_size) |
| base64 decoder | |
| u32 | gf_base16_encode (u8 *in_buffer, u32 in_buffer_size, u8 *out_buffer, u32 out_buffer_size) |
| base16 encoder | |
| u32 | gf_base16_decode (u8 *in_buffer, u32 in_buffer_size, u8 *out_buffer, u32 out_buffer_size) |
| base16 decoder | |
Base 16 and 64 coding.
This section documents the base encoding and decoding functions of the GPAC framework.
| u32 gf_base64_encode | ( | const u8 * | in_buffer, |
| u32 | in_buffer_size, | ||
| u8 * | out_buffer, | ||
| u32 | out_buffer_size | ||
| ) |
base64 encoder
Encodes a data buffer to Base64
| in_buffer | input data buffer |
| in_buffer_size | input data buffer size |
| out_buffer | output Base64 buffer location |
| out_buffer_size | output Base64 buffer allocated size |
Here is the caller graph for this function:base64 decoder
Decodes a Base64 buffer to data
| in_buffer | input Base64 buffer |
| in_buffer_size | input Base64 buffer size |
| out_buffer | output data buffer location |
| out_buffer_size | output data buffer allocated size |
Here is the call graph for this function:
Here is the caller graph for this function:base16 encoder
Encodes a data buffer to Base16
| in_buffer | input data buffer |
| in_buffer_size | input data buffer size |
| out_buffer | output Base16 buffer location |
| out_buffer_size | output Base16 buffer allocated size |
Here is the caller graph for this function:base16 decoder
Decodes a Base16 buffer to data
| in_buffer | input Base16 buffer |
| in_buffer_size | input Base16 buffer size |
| out_buffer | output data buffer location |
| out_buffer_size | output data buffer allocated size |
Here is the caller graph for this function: