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
33998379
Commit
33998379
authored
Mar 08, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bluray: kill warnings
parent
24961b35
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
modules/access/bluray.c
modules/access/bluray.c
+2
-4
No files found.
modules/access/bluray.c
View file @
33998379
...
...
@@ -777,7 +777,7 @@ static void blurayResetParser( demux_t *p_demux )
}
}
static
void
blurayUpdateTitle
(
demux_t
*
p_demux
,
int
i_title
)
static
void
blurayUpdateTitle
(
demux_t
*
p_demux
,
unsigned
i_title
)
{
blurayResetParser
(
p_demux
);
if
(
i_title
>=
p_demux
->
p_sys
->
i_title
)
{
...
...
@@ -951,12 +951,10 @@ static int blurayControl(demux_t *p_demux, int query, va_list args)
static
void
blurayHandleEvent
(
demux_t
*
p_demux
,
const
BD_EVENT
*
e
)
{
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
switch
(
e
->
event
)
{
case
BD_EVENT_TITLE
:
blurayUpdateTitle
(
p_demux
,
e
->
param
);
blurayUpdateTitle
(
p_demux
,
e
->
param
);
break
;
case
BD_EVENT_PLAYITEM
:
break
;
...
...
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