[FFmpeg-cvslog] avcodec/mpegvideo: Only allocate coded_block when needed
Andreas Rheinhardt
git at videolan.org
Wed Jun 12 14:15:00 EEST 2024
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sat Apr 20 22:56:44 2024 +0200| [ba033acb56f2c6c68b9464a491807a6f7dba64bd] | committer: Andreas Rheinhardt
avcodec/mpegvideo: Only allocate coded_block when needed
It is only needed for msmpeg4v3, wmv1, wmv2 and VC-1.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ba033acb56f2c6c68b9464a491807a6f7dba64bd
---
libavcodec/mpegvideo.c | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 130ccb4c97..74be22346d 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -596,11 +596,16 @@ int ff_mpv_init_context_frame(MpegEncContext *s)
}
if (s->out_format == FMT_H263) {
- /* cbp values, cbp, ac_pred, pred_dir */
- if (!(s->coded_block_base = av_mallocz(y_size + (s->mb_height&1)*2*s->b8_stride)) ||
- !(s->cbp_table = av_mallocz(mb_array_size)) ||
+ /* cbp, ac_pred, pred_dir */
+ if (!(s->cbp_table = av_mallocz(mb_array_size)) ||
!(s->pred_dir_table = av_mallocz(mb_array_size)))
return AVERROR(ENOMEM);
+ }
+
+ if (s->msmpeg4_version >= 3) {
+ s->coded_block_base = av_mallocz(y_size + (s->mb_height&1)*2*s->b8_stride);
+ if (!s->coded_block_base)
+ return AVERROR(ENOMEM);
s->coded_block = s->coded_block_base + s->b8_stride + 1;
}
More information about the ffmpeg-cvslog
mailing list