ffmpeg | branch: master | Michael Niedermayer <[email protected]> | Thu Jan 15 23:00:52 2015 +0100| [71bd6ea0fada69dd562d2e9dc1cd67d07b5a7417] | committer: Michael Niedermayer
avcodec/flashsv2enc: use av_realloc_array() Signed-off-by: Michael Niedermayer <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=71bd6ea0fada69dd562d2e9dc1cd67d07b5a7417 --- libavcodec/flashsv2enc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/flashsv2enc.c b/libavcodec/flashsv2enc.c index 1c016f2..f74160a 100644 --- a/libavcodec/flashsv2enc.c +++ b/libavcodec/flashsv2enc.c @@ -806,8 +806,8 @@ static int reconfigure_at_keyframe(FlashSV2Context * s, const uint8_t * image, s->block_width = block_width; s->block_height = block_height; if (s->rows * s->cols > s->blocks_size / sizeof(Block)) { - s->frame_blocks = av_realloc(s->frame_blocks, s->rows * s->cols * sizeof(Block)); - s->key_blocks = av_realloc(s->key_blocks, s->cols * s->rows * sizeof(Block)); + s->frame_blocks = av_realloc_array(s->frame_blocks, s->rows, s->cols * sizeof(Block)); + s->key_blocks = av_realloc_array(s->key_blocks, s->cols, s->rows * sizeof(Block)); if (!s->frame_blocks || !s->key_blocks) { av_log(s->avctx, AV_LOG_ERROR, "Memory allocation failed.\n"); return -1; _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
