提交 3e491a1f 编写于 作者: P Paul B Mahol

avfilter/af_sofalizer: print size of FFT that failed to init

Signed-off-by: NPaul B Mahol <onemda@gmail.com>
上级 966eadea
......@@ -999,7 +999,7 @@ static int config_input(AVFilterLink *inlink)
s->ifft[1] = av_fft_init(log2(s->n_fft), 1);
if (!s->fft[0] || !s->fft[1] || !s->ifft[0] || !s->ifft[1]) {
av_log(ctx, AV_LOG_ERROR, "Unable to create FFT contexts.\n");
av_log(ctx, AV_LOG_ERROR, "Unable to create FFT contexts of size %d.\n", s->n_fft);
return AVERROR(ENOMEM);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册