You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/af_vibrato: Fix segfault upon allocation error
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -127,11 +127,11 @@ static int config_input(AVFilterLink *inlink)
|
|||||||
int c;
|
int c;
|
||||||
AVFilterContext *ctx = inlink->dst;
|
AVFilterContext *ctx = inlink->dst;
|
||||||
VibratoContext *s = ctx->priv;
|
VibratoContext *s = ctx->priv;
|
||||||
s->channels = inlink->channels;
|
|
||||||
|
|
||||||
s->buf = av_calloc(inlink->channels, sizeof(*s->buf));
|
s->buf = av_calloc(inlink->channels, sizeof(*s->buf));
|
||||||
if (!s->buf)
|
if (!s->buf)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
s->channels = inlink->channels;
|
||||||
s->buf_size = lrint(inlink->sample_rate * 0.005 + 0.5);
|
s->buf_size = lrint(inlink->sample_rate * 0.005 + 0.5);
|
||||||
for (c = 0; c < s->channels; c++) {
|
for (c = 0; c < s->channels; c++) {
|
||||||
s->buf[c] = av_malloc_array(s->buf_size, sizeof(*s->buf[c]));
|
s->buf[c] = av_malloc_array(s->buf_size, sizeof(*s->buf[c]));
|
||||||
|
Reference in New Issue
Block a user