Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
7a2431ff
Commit
7a2431ff
authored
Nov 01, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Blu-Ray: warn the user about AACS/BD+
You need a very recent libbluray for this support
parent
2abfe391
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
modules/access/bluray.c
modules/access/bluray.c
+46
-0
No files found.
modules/access/bluray.c
View file @
7a2431ff
...
...
@@ -34,6 +34,7 @@
#include <vlc_access.h>
#include <vlc_messages.h>
#include <vlc_input.h>
#include <vlc_dialog.h>
#include <libbluray/bluray.h>
...
...
@@ -127,6 +128,51 @@ static int blurayOpen( vlc_object_t *object )
return
VLC_EGENERIC
;
}
/* Warning the user about AACS/BD+ */
const
BLURAY_DISC_INFO
*
disc_info
=
bd_get_disc_info
(
p_sys
->
bluray
);
msg_Dbg
(
p_access
,
"First play: %i, Top menu: %i
\n
"
"HDMV Titles: %i, BDJ Titles: %i, Other: %i"
,
disc_info
->
first_play_supported
,
disc_info
->
top_menu_supported
,
disc_info
->
num_hdmv_titles
,
disc_info
->
num_bdj_titles
,
disc_info
->
num_unsupported_titles
);
/* AACS */
if
(
disc_info
->
aacs_detected
)
{
if
(
!
disc_info
->
libaacs_detected
)
{
dialog_Fatal
(
p_access
,
_
(
"Blu-Ray error"
),
_
(
"This Blu-Ray Disc needs a library for AACS decoding, "
"and your system does not have it."
));
blurayClose
(
object
);
return
VLC_EGENERIC
;
}
if
(
!
disc_info
->
aacs_handled
)
{
dialog_Fatal
(
p_access
,
_
(
"Blu-Ray error"
),
_
(
"Your system AACS decoding library does not work. "
"Missing keys?"
));
blurayClose
(
object
);
return
VLC_EGENERIC
;
}
}
/* BD+ */
if
(
disc_info
->
bdplus_detected
)
{
if
(
!
disc_info
->
libbdplus_detected
)
{
dialog_Fatal
(
p_access
,
_
(
"Blu-Ray error"
),
_
(
"This Blu-Ray Disc needs a library for BD+ decoding, "
"and your system does not have it."
));
blurayClose
(
object
);
return
VLC_EGENERIC
;
}
if
(
!
disc_info
->
bdplus_handled
)
{
dialog_Fatal
(
p_access
,
_
(
"Blu-Ray error"
),
_
(
"Your system BD+ decoding library does not work. "
"Missing configuration?"
));
blurayClose
(
object
);
return
VLC_EGENERIC
;
}
}
/* Get titles and chapters */
if
(
blurayInitTitles
(
p_access
)
!=
VLC_SUCCESS
)
{
blurayClose
(
object
);
return
VLC_EGENERIC
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment