From aaf4e703f6d9583e1a910191f39e738cf5595e24 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 15 Sep 2015 16:27:52 +0000 Subject: [PATCH] avfilter/af_stereowiden: fix 2nd argument for av_calloc Signed-off-by: Paul B Mahol --- libavfilter/af_stereowiden.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/af_stereowiden.c b/libavfilter/af_stereowiden.c index 30f8754c04..8f671cabf7 100644 --- a/libavfilter/af_stereowiden.c +++ b/libavfilter/af_stereowiden.c @@ -73,7 +73,7 @@ static int config_input(AVFilterLink *inlink) StereoWidenContext *s = ctx->priv; s->length = 2 * s->delay * inlink->sample_rate / 1000; - s->buffer = av_calloc(s->length, sizeof(s->buffer)); + s->buffer = av_calloc(s->length, sizeof(*s->buffer)); if (!s->buffer) return AVERROR(ENOMEM); s->write = s->buffer;