mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 18:32:22 +00:00
avfilter/af_aiir: use correct size when allocating in zp2tf
This commit is contained in:
parent
726dbc57f8
commit
aac16abd92
@ -468,8 +468,8 @@ static int convert_zp2tf(AVFilterContext *ctx, int channels)
|
|||||||
IIRChannel *iir = &s->iir[ch];
|
IIRChannel *iir = &s->iir[ch];
|
||||||
double *topc, *botc;
|
double *topc, *botc;
|
||||||
|
|
||||||
topc = av_calloc((iir->nb_ab[0] + 1) * 2, sizeof(*topc));
|
topc = av_calloc((iir->nb_ab[1] + 1) * 2, sizeof(*topc));
|
||||||
botc = av_calloc((iir->nb_ab[1] + 1) * 2, sizeof(*botc));
|
botc = av_calloc((iir->nb_ab[0] + 1) * 2, sizeof(*botc));
|
||||||
if (!topc || !botc) {
|
if (!topc || !botc) {
|
||||||
ret = AVERROR(ENOMEM);
|
ret = AVERROR(ENOMEM);
|
||||||
goto fail;
|
goto fail;
|
||||||
|
Loading…
Reference in New Issue
Block a user