mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
Add memory allocation failure checks to ff_iir_filter_init_coeffs().
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
committed by
Mans Rullgard
parent
f0f54c297f
commit
d42dc217ed
@@ -88,7 +88,7 @@ av_cold struct FFPsyPreprocessContext* ff_psy_preprocess_init(AVCodecContext *av
|
||||
cutoff_coeff = 2.0 * avctx->cutoff / avctx->sample_rate;
|
||||
|
||||
if (cutoff_coeff)
|
||||
ctx->fcoeffs = ff_iir_filter_init_coeffs(FF_FILTER_TYPE_BUTTERWORTH, FF_FILTER_MODE_LOWPASS,
|
||||
ctx->fcoeffs = ff_iir_filter_init_coeffs(avctx, FF_FILTER_TYPE_BUTTERWORTH, FF_FILTER_MODE_LOWPASS,
|
||||
FILT_ORDER, cutoff_coeff, 0.0, 0.0);
|
||||
if (ctx->fcoeffs) {
|
||||
ctx->fstate = av_mallocz(sizeof(ctx->fstate[0]) * avctx->channels);
|
||||
|
||||
Reference in New Issue
Block a user