[FFmpeg-devel] [PATCH 139/217] avcodec/cook: Remove redundant free
Andreas Rheinhardt
andreas.rheinhardt at gmail.com
Wed Dec 2 06:21:26 EET 2020
This decoder has the FF_CODEC_CAP_INIT_CLEANUP flag set.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
libavcodec/cook.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/libavcodec/cook.c b/libavcodec/cook.c
index 93c51f5829..f552a57415 100644
--- a/libavcodec/cook.c
+++ b/libavcodec/cook.c
@@ -236,10 +236,9 @@ static av_cold int init_cook_mlt(COOKContext *q)
q->mlt_window[j] *= sqrt(2.0 / q->samples_per_channel);
/* Initialize the MDCT. */
- if ((ret = ff_mdct_init(&q->mdct_ctx, av_log2(mlt_size) + 1, 1, 1.0 / 32768.0))) {
- av_freep(&q->mlt_window);
+ ret = ff_mdct_init(&q->mdct_ctx, av_log2(mlt_size) + 1, 1, 1.0 / 32768.0);
+ if (ret < 0)
return ret;
- }
av_log(q->avctx, AV_LOG_DEBUG, "MDCT initialized, order = %d.\n",
av_log2(mlt_size) + 1);
--
2.25.1
More information about the ffmpeg-devel
mailing list