Commit 0cb62d13 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

bluray: protection against incorrect paths

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
(cherry picked from commit 11e721fa2da7eaf8a0088afc9e2caeedaa59af56)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 7d7e2dd3
...@@ -200,6 +200,13 @@ static int blurayOpen( vlc_object_t *object ) ...@@ -200,6 +200,13 @@ static int blurayOpen( vlc_object_t *object )
/* Warning the user about AACS/BD+ */ /* Warning the user about AACS/BD+ */
const BLURAY_DISC_INFO *disc_info = bd_get_disc_info(p_sys->bluray); const BLURAY_DISC_INFO *disc_info = bd_get_disc_info(p_sys->bluray);
/* Is it a bluray? */
if (!disc_info->bluray_detected) {
error_msg = "Path doesn't appear to be a bluray";
goto error;
}
msg_Info(p_demux, "First play: %i, Top menu: %i\n" msg_Info(p_demux, "First play: %i, Top menu: %i\n"
"HDMV Titles: %i, BD-J Titles: %i, Other: %i", "HDMV Titles: %i, BD-J Titles: %i, Other: %i",
disc_info->first_play_supported, disc_info->top_menu_supported, disc_info->first_play_supported, disc_info->top_menu_supported,
......
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