diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-05-19 13:39:15 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-05-20 11:19:48 +0200 |
commit | 23ba1503f2b11057c65052b4a07961236d8d69c7 (patch) | |
tree | be3ef623529d31b1f84386732a9f9ef7c39e2209 /libavcodec/ivi_common.c | |
parent | a6e4ac40a62930d3c90f869990f96fedb9a5d654 (diff) | |
download | ffmpeg-23ba1503f2b11057c65052b4a07961236d8d69c7.tar.gz |
indeo: clear allocated band buffers
Diffstat (limited to 'libavcodec/ivi_common.c')
-rw-r--r-- | libavcodec/ivi_common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ivi_common.c b/libavcodec/ivi_common.c index 581e7a5080..0d773761ff 100644 --- a/libavcodec/ivi_common.c +++ b/libavcodec/ivi_common.c @@ -212,14 +212,14 @@ av_cold int ff_ivi_init_planes(IVIPlaneDesc *planes, const IVIPicConfig *cfg) band->width = b_width; band->height = b_height; band->pitch = width_aligned; - band->bufs[0] = av_malloc(buf_size); - band->bufs[1] = av_malloc(buf_size); + band->bufs[0] = av_mallocz(buf_size); + band->bufs[1] = av_mallocz(buf_size); if (!band->bufs[0] || !band->bufs[1]) return AVERROR(ENOMEM); /* allocate the 3rd band buffer for scalability mode */ if (cfg->luma_bands > 1) { - band->bufs[2] = av_malloc(buf_size); + band->bufs[2] = av_mallocz(buf_size); if (!band->bufs[2]) return AVERROR(ENOMEM); } |