mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
Simplify condition.
This commit is contained in:
parent
20e5d64a1a
commit
6266c51538
@ -589,7 +589,7 @@ static int write_header(AVFormatContext *s){
|
|||||||
nut->chapter = av_mallocz(sizeof(ChapterContext)*s->nb_chapters);
|
nut->chapter = av_mallocz(sizeof(ChapterContext)*s->nb_chapters);
|
||||||
nut->time_base= av_mallocz(sizeof(AVRational )*(s->nb_streams +
|
nut->time_base= av_mallocz(sizeof(AVRational )*(s->nb_streams +
|
||||||
s->nb_chapters));
|
s->nb_chapters));
|
||||||
if (!nut->stream || (s->nb_chapters && !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);
|
||||||
av_freep(&nut->time_base);
|
av_freep(&nut->time_base);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user