diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-12-15 10:03:05 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-12-15 10:04:01 +0100 |
commit | 04cc4d055079b7f83f7102b75ab24c08972c37a7 (patch) | |
tree | bf38c222e77c8871cd6b663fb34c089d81ca12a2 | |
parent | a066ff89bcbae6033c2ffda9271cad84f6c1b807 (diff) | |
download | ffmpeg-04cc4d055079b7f83f7102b75ab24c08972c37a7.tar.gz |
avfilter/af_sofalizer: check av_fft_init return code
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/af_sofalizer.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavfilter/af_sofalizer.c b/libavfilter/af_sofalizer.c index 0aaae4baa8..6bf4306489 100644 --- a/libavfilter/af_sofalizer.c +++ b/libavfilter/af_sofalizer.c @@ -1125,6 +1125,11 @@ static int config_input(AVFilterLink *inlink) av_fft_end(s->ifft[1]); s->ifft[0] = av_fft_init(log2(s->n_fft), 1); 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"); + return AVERROR(ENOMEM); + } } /* Allocate memory for the impulse responses, delays and the ringbuffers */ |