mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/audio_fifo: Use av_mallocz_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b395167d56
commit
2ded57216e
|
@ -76,7 +76,7 @@ AVAudioFifo *av_audio_fifo_alloc(enum AVSampleFormat sample_fmt, int channels,
|
|||
af->sample_size = buf_size / nb_samples;
|
||||
af->nb_buffers = av_sample_fmt_is_planar(sample_fmt) ? channels : 1;
|
||||
|
||||
af->buf = av_mallocz(af->nb_buffers * sizeof(*af->buf));
|
||||
af->buf = av_mallocz_array(af->nb_buffers, sizeof(*af->buf));
|
||||
if (!af->buf)
|
||||
goto error;
|
||||
|
||||
|
|
Loading…
Reference in New Issue