summaryrefslogtreecommitdiff
path: root/libavfilter/af_aiir.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/af_aiir.c')
-rw-r--r--libavfilter/af_aiir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/af_aiir.c b/libavfilter/af_aiir.c
index 214c998348..9427d25b50 100644
--- a/libavfilter/af_aiir.c
+++ b/libavfilter/af_aiir.c
@@ -468,8 +468,8 @@ static int convert_zp2tf(AVFilterContext *ctx, int channels)
IIRChannel *iir = &s->iir[ch];
double *topc, *botc;
- topc = av_calloc((iir->nb_ab[0] + 1) * 2, sizeof(*topc));
- botc = av_calloc((iir->nb_ab[1] + 1) * 2, sizeof(*botc));
+ topc = av_calloc((iir->nb_ab[1] + 1) * 2, sizeof(*topc));
+ botc = av_calloc((iir->nb_ab[0] + 1) * 2, sizeof(*botc));
if (!topc || !botc) {
ret = AVERROR(ENOMEM);
goto fail;