stream_dvdnav: check the length of all titles with dvdnav://longest

The last title was ignored before.

CC: @mpv-player/stable

Signed-off-by: wm4 <wm4@nowhere>
This commit is contained in:
tholin 2014-07-03 23:27:49 +02:00 committed by wm4
parent f8a7517fb7
commit bc5e539d3b
1 changed files with 1 additions and 1 deletions

View File

@ -698,7 +698,7 @@ static int open_s(stream_t *stream)
int best_title = -1;
int32_t num_titles;
if (dvdnav_get_number_of_titles(dvdnav, &num_titles) == DVDNAV_STATUS_OK) {
for (int n = 1; n < num_titles; n++) {
for (int n = 1; n <= num_titles; n++) {
uint64_t *parts = NULL, duration = 0;
dvdnav_describe_title_chapters(dvdnav, n, &parts, &duration);
if (parts) {