From 1ea365082318f06cd42a8b37dd0c7724b599c821 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Tue, 14 Sep 2021 21:31:53 +0200 Subject: Replace all occurences of av_mallocz_array() by av_calloc() They do the same. Reviewed-by: Paul B Mahol Signed-off-by: Andreas Rheinhardt --- libavfilter/ebur128.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavfilter/ebur128.c') diff --git a/libavfilter/ebur128.c b/libavfilter/ebur128.c index d93500ef3e..1a85a90360 100644 --- a/libavfilter/ebur128.c +++ b/libavfilter/ebur128.c @@ -232,7 +232,7 @@ FFEBUR128State *ff_ebur128_init(unsigned int channels, CHECK_ERROR(errcode, 0, free_internal) st->d->sample_peak = - (double *) av_mallocz_array(channels, sizeof(*st->d->sample_peak)); + (double *) av_calloc(channels, sizeof(*st->d->sample_peak)); CHECK_ERROR(!st->d->sample_peak, 0, free_channel_map) st->samplerate = samplerate; @@ -253,8 +253,8 @@ FFEBUR128State *ff_ebur128_init(unsigned int channels, - (st->d->audio_data_frames % st->d->samples_in_100ms); } st->d->audio_data = - (double *) av_mallocz_array(st->d->audio_data_frames, - st->channels * sizeof(*st->d->audio_data)); + (double *) av_calloc(st->d->audio_data_frames, + st->channels * sizeof(*st->d->audio_data)); CHECK_ERROR(!st->d->audio_data, 0, free_sample_peak) ebur128_init_filter(st); -- cgit v1.2.3