avfilter/vf_dctdnoiz: Use av_malloc_array()

Signed-off-by: Paul B Mahol <onemda@gmail.com>
pull/115/head^2
Paul B Mahol 10 years ago
parent f018b1f3a0
commit d0045312c3
  1. 6
      libavfilter/vf_dctdnoiz.c

@ -513,9 +513,9 @@ static int config_input(AVFilterLink *inlink)
s->p_linesize = linesize = FFALIGN(s->pr_width, 32);
for (i = 0; i < 2; i++) {
s->cbuf[i][0] = av_malloc(linesize * s->pr_height * sizeof(*s->cbuf[i][0]));
s->cbuf[i][1] = av_malloc(linesize * s->pr_height * sizeof(*s->cbuf[i][1]));
s->cbuf[i][2] = av_malloc(linesize * s->pr_height * sizeof(*s->cbuf[i][2]));
s->cbuf[i][0] = av_malloc_array(linesize * s->pr_height, sizeof(*s->cbuf[i][0]));
s->cbuf[i][1] = av_malloc_array(linesize * s->pr_height, sizeof(*s->cbuf[i][1]));
s->cbuf[i][2] = av_malloc_array(linesize * s->pr_height, sizeof(*s->cbuf[i][2]));
if (!s->cbuf[i][0] || !s->cbuf[i][1] || !s->cbuf[i][2])
return AVERROR(ENOMEM);
}

Loading…
Cancel
Save