diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-08 11:33:00 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-11 19:38:41 +0100 |
commit | fb36af3b66efab15b5a58f66acfd3425b06166dd (patch) | |
tree | 02929180f2be8c7a6f1c8664dd7558e0f925bbb6 | |
parent | 9d5810702c47369913f4616d3dd7c83f01ec754a (diff) | |
download | ffmpeg-fb36af3b66efab15b5a58f66acfd3425b06166dd.tar.gz |
avcodec/proresenc_kostya: Use av_calloc/av_malloc_array()
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/proresenc_kostya.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/proresenc_kostya.c b/libavcodec/proresenc_kostya.c index 08a874dd4e..beceee621d 100644 --- a/libavcodec/proresenc_kostya.c +++ b/libavcodec/proresenc_kostya.c @@ -1273,18 +1273,18 @@ static av_cold int encode_init(AVCodecContext *avctx) } } - ctx->slice_q = av_malloc(ctx->slices_per_picture * sizeof(*ctx->slice_q)); + ctx->slice_q = av_malloc_array(ctx->slices_per_picture, sizeof(*ctx->slice_q)); if (!ctx->slice_q) return AVERROR(ENOMEM); - ctx->tdata = av_mallocz(avctx->thread_count * sizeof(*ctx->tdata)); + ctx->tdata = av_calloc(avctx->thread_count, sizeof(*ctx->tdata)); if (!ctx->tdata) return AVERROR(ENOMEM); for (j = 0; j < avctx->thread_count; j++) { - ctx->tdata[j].nodes = av_malloc((ctx->slices_width + 1) - * TRELLIS_WIDTH - * sizeof(*ctx->tdata->nodes)); + ctx->tdata[j].nodes = av_malloc_array(ctx->slices_width + 1, + TRELLIS_WIDTH + * sizeof(*ctx->tdata->nodes)); if (!ctx->tdata[j].nodes) return AVERROR(ENOMEM); for (i = min_quant; i < max_quant + 2; i++) { |