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
c27af088
Commit
c27af088
authored
Apr 29, 2013
by
Christoph Miebach
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
It's Blu-ray now
parent
be40904a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
modules/access/bd/bd.c
modules/access/bd/bd.c
+1
-1
modules/access/bluray.c
modules/access/bluray.c
+9
-9
modules/gui/qt4/ui/open_disk.ui
modules/gui/qt4/ui/open_disk.ui
+1
-1
No files found.
modules/access/bd/bd.c
View file @
c27af088
...
...
@@ -52,7 +52,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
()
set_shortname
(
N_
(
"BD"
)
)
set_description
(
N_
(
"Blu
R
ay Disc Input"
)
)
set_description
(
N_
(
"Blu
-r
ay Disc Input"
)
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
set_capability
(
"access_demux"
,
60
)
...
...
modules/access/bluray.c
View file @
c27af088
...
...
@@ -57,8 +57,8 @@
* Module descriptor
*****************************************************************************/
#define BD_MENU_TEXT N_( "Blu
R
ay menus" )
#define BD_MENU_LONGTEXT N_( "Use
blu
ray menus. If disabled, "\
#define BD_MENU_TEXT N_( "Blu
-r
ay menus" )
#define BD_MENU_LONGTEXT N_( "Use
Blu-
ray menus. If disabled, "\
"the movie will start directly" )
/* Callbacks */
...
...
@@ -66,8 +66,8 @@ static int blurayOpen ( vlc_object_t * );
static
void
blurayClose
(
vlc_object_t
*
);
vlc_module_begin
()
set_shortname
(
N_
(
"Blu
R
ay"
)
)
set_description
(
N_
(
"Blu
R
ay Disc support (libbluray)"
)
)
set_shortname
(
N_
(
"Blu
-r
ay"
)
)
set_description
(
N_
(
"Blu
-r
ay Disc support (libbluray)"
)
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
...
...
@@ -247,7 +247,7 @@ static int blurayOpen( vlc_object_t *object )
/* Is it a bluray? */
if
(
!
disc_info
->
bluray_detected
)
{
error_msg
=
"Path doesn't appear to be a
blu
ray"
;
error_msg
=
"Path doesn't appear to be a
Blu-
ray"
;
goto
error
;
}
...
...
@@ -260,7 +260,7 @@ static int blurayOpen( vlc_object_t *object )
/* AACS */
if
(
disc_info
->
aacs_detected
)
{
if
(
!
disc_info
->
libaacs_detected
)
{
error_msg
=
_
(
"This Blu
R
ay Disc needs a library for AACS decoding, "
error_msg
=
_
(
"This Blu
-r
ay Disc needs a library for AACS decoding, "
"and your system does not have it."
);
goto
error
;
}
...
...
@@ -269,7 +269,7 @@ static int blurayOpen( vlc_object_t *object )
if
(
disc_info
->
aacs_error_code
)
{
switch
(
disc_info
->
aacs_error_code
)
{
case
BD_AACS_CORRUPTED_DISC
:
error_msg
=
_
(
"Blu
R
ay Disc is corrupted."
);
error_msg
=
_
(
"Blu
-r
ay Disc is corrupted."
);
break
;
case
BD_AACS_NO_CONFIG
:
error_msg
=
_
(
"Missing AACS configuration file!"
);
...
...
@@ -300,7 +300,7 @@ static int blurayOpen( vlc_object_t *object )
/* BD+ */
if
(
disc_info
->
bdplus_detected
)
{
if
(
!
disc_info
->
libbdplus_detected
)
{
error_msg
=
_
(
"This Blu
R
ay Disc needs a library for BD+ decoding, "
error_msg
=
_
(
"This Blu
-r
ay Disc needs a library for BD+ decoding, "
"and your system does not have it."
);
goto
error
;
}
...
...
@@ -367,7 +367,7 @@ static int blurayOpen( vlc_object_t *object )
error:
if
(
error_msg
)
dialog_Fatal
(
p_demux
,
_
(
"Blu
R
ay error"
),
"%s"
,
error_msg
);
dialog_Fatal
(
p_demux
,
_
(
"Blu
-r
ay error"
),
"%s"
,
error_msg
);
blurayClose
(
object
);
return
VLC_EGENERIC
;
}
...
...
modules/gui/qt4/ui/open_disk.ui
View file @
c27af088
...
...
@@ -62,7 +62,7 @@
<item
row=
"0"
column=
"3"
>
<widget
class=
"QRadioButton"
name=
"bdRadioButton"
>
<property
name=
"text"
>
<string>
Blu
R
ay
</string>
<string>
Blu
-r
ay
</string>
</property>
</widget>
</item>
...
...
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