vlc | branch: master | Hugo Beauzée-Luyssen <[email protected]> | Thu Mar 8 13:03:14 2012 +0100| [aef79d832965b10a923aa47b89475ae44bb11b53] | committer: Hugo Beauzée-Luyssen
bluray: Removing useless title management code. As pointed by fenrir, this is already handled by the core. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=aef79d832965b10a923aa47b89475ae44bb11b53 --- modules/access/bluray.c | 13 ++----------- 1 files changed, 2 insertions(+), 11 deletions(-) diff --git a/modules/access/bluray.c b/modules/access/bluray.c index 274753c..bf28cb8 100644 --- a/modules/access/bluray.c +++ b/modules/access/bluray.c @@ -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; } } _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
