Commit aef79d83 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

bluray: Removing useless title management code.

As pointed by fenrir, this is already handled by the core.
parent bc368cb4
......@@ -148,8 +148,6 @@ static int blurayOpen( vlc_object_t *object )
demux_t *p_demux = (demux_t*)object;
demux_sys_t *p_sys;
char *pos_title;
int i_title = -1;
char bd_path[PATH_MAX] = { '\0' };
const char *error_msg = NULL;
......@@ -273,16 +271,9 @@ static int blurayOpen( vlc_object_t *object )
/* Registering overlay event handler */
bd_register_overlay_proc(p_sys->bluray, p_demux, blurayOverlayProc);
} else {
/* get title request */
if ((pos_title = strrchr(bd_path, ':'))) {
/* found character ':' for title information */
*(pos_title++) = '\0';
i_title = atoi(pos_title);
}
/* set start title number */
if (bluraySetTitle(p_demux, i_title) != VLC_SUCCESS) {
msg_Err( p_demux, "Could not set the title %d", i_title );
if (bluraySetTitle(p_demux, p_sys->i_longest_title) != VLC_SUCCESS) {
msg_Err( p_demux, "Could not set the title %d", p_sys->i_longest_title );
goto error;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment