mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-12 01:40:04 +01:00
lavf/utils: Do not force chapter end time before chapter start.
Fixes ticket #6671.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user