diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-08 16:00:16 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-11 19:38:41 +0100 |
commit | f5d6c78a8823b59f4a12af1a91e005f1e20903ce (patch) | |
tree | d475f1c2c6bd48b8ee5098c4e07100ef421b71b1 /libavcodec/twinvq.c | |
parent | d75c4cc7c1f1b9636140bee530ceda2c0b6b7c1d (diff) | |
download | ffmpeg-f5d6c78a8823b59f4a12af1a91e005f1e20903ce.tar.gz |
avcodec/metasound, twinvqdec: Cleanup generically upon init failure
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/twinvq.c')
-rw-r--r-- | libavcodec/twinvq.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavcodec/twinvq.c b/libavcodec/twinvq.c index 6dfaf06b14..38482e8c21 100644 --- a/libavcodec/twinvq.c +++ b/libavcodec/twinvq.c @@ -783,13 +783,10 @@ av_cold int ff_twinvq_decode_init(AVCodecContext *avctx) tctx->frames_per_packet = frames_per_packet; tctx->fdsp = avpriv_float_dsp_alloc(avctx->flags & AV_CODEC_FLAG_BITEXACT); - if (!tctx->fdsp) { - ff_twinvq_decode_close(avctx); + if (!tctx->fdsp) return AVERROR(ENOMEM); - } if ((ret = init_mdct_win(tctx))) { av_log(avctx, AV_LOG_ERROR, "Error initializing MDCT\n"); - ff_twinvq_decode_close(avctx); return ret; } init_bitstream_params(tctx); |