audio: replace deprecated av_mallocz_array

This commit is contained in:
sfan5 2021-10-30 17:11:46 +02:00
parent 662c793a55
commit 6996588254
1 changed files with 1 additions and 1 deletions

View File

@ -637,7 +637,7 @@ int mp_aframe_pool_allocate(struct mp_aframe_pool *pool, struct mp_aframe *frame
av_freep(&av_frame->extended_data); // sigh
if (planes > AV_NUM_DATA_POINTERS) {
av_frame->extended_data =
av_mallocz_array(planes, sizeof(av_frame->extended_data[0]));
av_calloc(planes, sizeof(av_frame->extended_data[0]));
if (!av_frame->extended_data)
abort();
} else {