Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
12bb4f9d
Commit
12bb4f9d
authored
Mar 11, 2012
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bluray: Fetching meta info isn't mandatory.
This should fix bluray playback on windows.
parent
1d4f6a97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/access/bluray.c
modules/access/bluray.c
+3
-1
No files found.
modules/access/bluray.c
View file @
12bb4f9d
...
...
@@ -250,7 +250,7 @@ static int blurayOpen( vlc_object_t *object )
/* Get titles and chapters */
p_sys
->
p_meta
=
bd_get_meta
(
p_sys
->
bluray
);
if
(
!
p_sys
->
p_meta
)
goto
error
;
msg_Warn
(
p_demux
,
"Failed to get meta info."
)
;
if
(
blurayInitTitles
(
p_demux
)
!=
VLC_SUCCESS
)
{
goto
error
;
...
...
@@ -912,6 +912,8 @@ static int blurayControl(demux_t *p_demux, int query, va_list args)
{
vlc_meta_t
*
p_meta
=
(
vlc_meta_t
*
)
va_arg
(
args
,
vlc_meta_t
*
);
const
META_DL
*
meta
=
p_sys
->
p_meta
;
if
(
meta
==
NULL
)
return
VLC_EGENERIC
;
if
(
!
EMPTY_STR
(
meta
->
di_name
))
vlc_meta_SetTitle
(
p_meta
,
meta
->
di_name
);
...
...
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