You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-30 22:24:04 +02:00
avcodec/cinepakenc: use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -236,11 +236,11 @@ static av_cold int cinepak_encode_init(AVCodecContext *avctx)
|
|||||||
if (!(s->frame_buf = av_malloc(frame_buf_size)))
|
if (!(s->frame_buf = av_malloc(frame_buf_size)))
|
||||||
goto enomem;
|
goto enomem;
|
||||||
|
|
||||||
if (!(s->mb = av_malloc(mb_count*sizeof(mb_info))))
|
if (!(s->mb = av_malloc_array(mb_count, sizeof(mb_info))))
|
||||||
goto enomem;
|
goto enomem;
|
||||||
|
|
||||||
#ifdef CINEPAKENC_DEBUG
|
#ifdef CINEPAKENC_DEBUG
|
||||||
if (!(s->best_mb = av_malloc(mb_count*sizeof(mb_info))))
|
if (!(s->best_mb = av_malloc_array(mb_count, sizeof(mb_info))))
|
||||||
goto enomem;
|
goto enomem;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user