FFmpeg 5.1.6
|
Other functions related to memory allocation. More...
Functions | |
int | av_size_mult (size_t a, size_t b, size_t *r) |
Multiply two size_t values checking for overflow. More... | |
void | av_max_alloc (size_t max) |
Set the maximum size that may be allocated in one block. More... | |
Other functions related to memory allocation.
int av_size_mult | ( | size_t | a, |
size_t | b, | ||
size_t * | r | ||
) |
Multiply two size_t
values checking for overflow.
[in] | a,b | Operands of multiplication |
[out] | r | Pointer to the result of the operation |
void av_max_alloc | ( | size_t | max | ) |
Set the maximum size that may be allocated in one block.
The value specified with this function is effective for all libavutil's heap management functions.
By default, the max value is defined as INT_MAX
.
max | Value to be set as the new maximum size |