OSDN Git Service

avcodec/libopusenc: Use av_mallocz_array()
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 17 Jan 2015 11:58:56 +0000 (12:58 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 17 Jan 2015 11:58:56 +0000 (12:58 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/libopusenc.c

index 6bb4862..7854609 100644 (file)
@@ -277,7 +277,7 @@ static av_cold int libopus_encode_init(AVCodecContext *avctx)
     }
     avctx->extradata_size = header_size;
 
-    opus->samples = av_mallocz(frame_size * avctx->channels *
+    opus->samples = av_mallocz_array(frame_size, avctx->channels *
                                av_get_bytes_per_sample(avctx->sample_fmt));
     if (!opus->samples) {
         av_log(avctx, AV_LOG_ERROR, "Failed to allocate samples buffer.\n");