1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avfilter/af_tremolo: make sure table size is at least 1

This commit is contained in:
Paul B Mahol 2020-12-25 14:01:52 +01:00
parent 676689cc7c
commit 38e71d8b6c

View File

@ -126,7 +126,7 @@ static int config_input(AVFilterLink *inlink)
const double offset = 1. - s->depth / 2.;
int i;
s->table_size = inlink->sample_rate / s->freq;
s->table_size = lrint(inlink->sample_rate / s->freq + 0.5);
s->table = av_malloc_array(s->table_size, sizeof(*s->table));
if (!s->table)
return AVERROR(ENOMEM);