[FFmpeg-cvslog] avformat/nutenc: use av_calloc()

Paul B Mahol git at videolan.org
Sat Sep 14 18:17:11 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat Sep 14 14:23:00 2013 +0000| [6a70feadb013000c81b75d2fa7732926c3949130] | committer: Paul B Mahol

avformat/nutenc: use av_calloc()

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6a70feadb013000c81b75d2fa7732926c3949130
---

 libavformat/nutenc.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c
index 9b7f41a..365b463 100644
--- a/libavformat/nutenc.c
+++ b/libavformat/nutenc.c
@@ -680,10 +680,10 @@ static int nut_write_header(AVFormatContext *s)
 
     nut->avf = s;
 
-    nut->stream   = av_mallocz(sizeof(StreamContext ) * s->nb_streams);
-    nut->chapter  = av_mallocz(sizeof(ChapterContext) * s->nb_chapters);
-    nut->time_base= av_mallocz(sizeof(AVRational    ) *(s->nb_streams +
-                                                        s->nb_chapters));
+    nut->stream   = av_calloc(s->nb_streams,  sizeof(*nut->stream ));
+    nut->chapter  = av_calloc(s->nb_chapters, sizeof(*nut->chapter));
+    nut->time_base= av_calloc(s->nb_streams +
+                              s->nb_chapters, sizeof(*nut->time_base));
     if (!nut->stream || !nut->chapter || !nut->time_base) {
         av_freep(&nut->stream);
         av_freep(&nut->chapter);



More information about the ffmpeg-cvslog mailing list