av_calloc

Allocate a block of nmemb * size bytes with alignment suitable for all memory accesses (including vectors if available on the CPU) and zero all the bytes of the block. The allocation will fail if nmemb * size is greater than or equal to INT_MAX. @param nmemb @param size @return Pointer to the allocated block, NULL if it cannot be allocated.

@nogc nothrow extern (C)
void*
av_calloc
(
size_t nmemb
,
size_t size
)

Meta