lavf/utils: Do not force chapter end time before chapter start.

Fixes ticket #6671.
This commit is contained in:
Carl Eugen Hoyos 2017-09-17 23:34:58 +02:00
parent 5cb70381d9
commit 2f3a3a7e32
1 changed files with 1 additions and 1 deletions

View File

@ -3167,7 +3167,7 @@ static void compute_chapters_end(AVFormatContext *s)
if (j != i && next_start > ch->start && next_start < end)
end = next_start;
}
ch->end = (end == INT64_MAX) ? ch->start : end;
ch->end = (end == INT64_MAX || end < ch->start) ? ch->start : end;
}
}