mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/nutenc: use av_calloc()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
1a3d142f1f
commit
6a70feadb0
@ -680,10 +680,10 @@ static int nut_write_header(AVFormatContext *s)
|
|||||||
|
|
||||||
nut->avf = s;
|
nut->avf = s;
|
||||||
|
|
||||||
nut->stream = av_mallocz(sizeof(StreamContext ) * s->nb_streams);
|
nut->stream = av_calloc(s->nb_streams, sizeof(*nut->stream ));
|
||||||
nut->chapter = av_mallocz(sizeof(ChapterContext) * s->nb_chapters);
|
nut->chapter = av_calloc(s->nb_chapters, sizeof(*nut->chapter));
|
||||||
nut->time_base= av_mallocz(sizeof(AVRational ) *(s->nb_streams +
|
nut->time_base= av_calloc(s->nb_streams +
|
||||||
s->nb_chapters));
|
s->nb_chapters, sizeof(*nut->time_base));
|
||||||
if (!nut->stream || !nut->chapter || !nut->time_base) {
|
if (!nut->stream || !nut->chapter || !nut->time_base) {
|
||||||
av_freep(&nut->stream);
|
av_freep(&nut->stream);
|
||||||
av_freep(&nut->chapter);
|
av_freep(&nut->chapter);
|
||||||
|
Loading…
Reference in New Issue
Block a user