[FFmpeg-devel] [PATCH 07/20] avcodec/wmaenc: Check operations that can fail
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Fri May 7 09:46:34 EEST 2021
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
libavcodec/wmaenc.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/libavcodec/wmaenc.c b/libavcodec/wmaenc.c
index 2a78325298..3035668487 100644
--- a/libavcodec/wmaenc.c
+++ b/libavcodec/wmaenc.c
@@ -88,8 +88,11 @@ static av_cold int encode_init(AVCodecContext *avctx)
return ret;
/* init MDCT */
- for (i = 0; i < s->nb_block_sizes; i++)
- ff_mdct_init(&s->mdct_ctx[i], s->frame_len_bits - i + 1, 0, 1.0);
+ for (i = 0; i < s->nb_block_sizes; i++) {
+ ret = ff_mdct_init(&s->mdct_ctx[i], s->frame_len_bits - i + 1, 0, 1.0);
+ if (ret < 0)
+ return ret;
+ }
block_align = avctx->bit_rate * (int64_t) s->frame_len /
(avctx->sample_rate * 8);
--
2.27.0
More information about the ffmpeg-devel
mailing list