|
FFmpeg 8.1
|
Buffer to print data progressively. More...
#include <libavutil/bprint.h>
Data Fields | |
| char * | str |
| string so far | |
| unsigned | len |
| length so far | |
| unsigned | size |
| allocated memory | |
| unsigned | size_max |
| maximum allocated memory | |
| char | reserved_internal_buffer [1] |
Buffer to print data progressively.
The string buffer grows as necessary and is always 0-terminated. The content of the string is never accessed, and thus is encoding-agnostic and can even hold binary data.
Small buffers are kept in the structure itself, and thus require no memory allocation at all (unless the contents of the buffer is needed after the structure goes out of scope). This is almost as lightweight as declaring a local char buf[512].
The length of the string can go beyond the allocated size: the buffer is then truncated, but the functions still keep account of the actual total length.
In other words, AVBPrint.len can be greater than AVBPrint.size and records the total length of what would have been to the buffer if there had been enough memory.
Append operations do not need to be tested for failure: if a memory allocation fails, data stop being appended to the buffer, but the length is still updated. This situation can be tested with av_bprint_is_complete().
The AVBPrint.size_max field determines several possible behaviours:
| unsigned AVBPrint::len |
| unsigned AVBPrint::size |