ffmpeg.libavutil.base64

Undocumented in source.

Members

Functions

AV_BASE64_DECODE_SIZE
auto AV_BASE64_DECODE_SIZE(T x)

Calculate the output size in bytes needed to decode a base64 string with length x to a data buffer.

AV_BASE64_SIZE
auto AV_BASE64_SIZE(T x)

Calculate the output size needed to base64-encode x bytes to a null-terminated string.

av_base64_decode
int av_base64_decode(ubyte* out_, const(char)* in_, int out_size)

Decode a base64-encoded string.

av_base64_encode
char* av_base64_encode(char* out_, int out_size, const(ubyte)* in_, int in_size)

Encode data to base64 and null-terminate.

Meta