summaryrefslogtreecommitdiff
path: root/libavcodec/twinvq.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-08 16:00:16 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-11 19:38:41 +0100
commitf5d6c78a8823b59f4a12af1a91e005f1e20903ce (patch)
treed475f1c2c6bd48b8ee5098c4e07100ef421b71b1 /libavcodec/twinvq.c
parentd75c4cc7c1f1b9636140bee530ceda2c0b6b7c1d (diff)
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.c5
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);