MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / av_realloc_array

Function av_realloc_array

libavutil/mem.c:217–223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215}
216
217void *av_realloc_array(void *ptr, size_t nmemb, size_t size)
218{
219 size_t result;
220 if (size_mult(nmemb, size, &result) < 0)
221 return NULL;
222 return av_realloc(ptr, result);
223}
224
225int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
226{

Callers 15

handle_fileFunction · 0.85
frame_hashFunction · 0.85
handle_fileFunction · 0.85
apv_add_frameinfoFunction · 0.85
avformat_new_streamFunction · 0.85
stream_group_add_streamFunction · 0.85
codec_config_obuFunction · 0.85
param_parseFunction · 0.85
audio_element_obuFunction · 0.85

Calls 2

size_multFunction · 0.85
av_reallocFunction · 0.70

Tested by 1

frame_hashFunction · 0.68