mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avcodec/cngdec: use av_mallocz_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2773ab36cc
commit
f703dae7aa
@ -59,12 +59,12 @@ static av_cold int cng_decode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
p->order = 12;
|
p->order = 12;
|
||||||
avctx->frame_size = 640;
|
avctx->frame_size = 640;
|
||||||
p->refl_coef = av_mallocz(p->order * sizeof(*p->refl_coef));
|
p->refl_coef = av_mallocz_array(p->order, sizeof(*p->refl_coef));
|
||||||
p->target_refl_coef = av_mallocz(p->order * sizeof(*p->target_refl_coef));
|
p->target_refl_coef = av_mallocz_array(p->order, sizeof(*p->target_refl_coef));
|
||||||
p->lpc_coef = av_mallocz(p->order * sizeof(*p->lpc_coef));
|
p->lpc_coef = av_mallocz_array(p->order, sizeof(*p->lpc_coef));
|
||||||
p->filter_out = av_mallocz((avctx->frame_size + p->order) *
|
p->filter_out = av_mallocz_array(avctx->frame_size + p->order,
|
||||||
sizeof(*p->filter_out));
|
sizeof(*p->filter_out));
|
||||||
p->excitation = av_mallocz(avctx->frame_size * sizeof(*p->excitation));
|
p->excitation = av_mallocz_array(avctx->frame_size, sizeof(*p->excitation));
|
||||||
if (!p->refl_coef || !p->target_refl_coef || !p->lpc_coef ||
|
if (!p->refl_coef || !p->target_refl_coef || !p->lpc_coef ||
|
||||||
!p->filter_out || !p->excitation) {
|
!p->filter_out || !p->excitation) {
|
||||||
cng_decode_close(avctx);
|
cng_decode_close(avctx);
|
||||||
|
Loading…
Reference in New Issue
Block a user