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

Fixes ticket #6671.
pull/273/head
Carl Eugen Hoyos 7 years ago
parent 5cb70381d9
commit 2f3a3a7e32
  1. 2
      libavformat/utils.c

@ -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;
}
}

Loading…
Cancel
Save