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
2eb87d93
Commit
2eb87d93
authored
Mar 08, 2012
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bluray: Implement BD_EVENT_PLAYITEM event
parent
eeae67fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
modules/access/bluray.c
modules/access/bluray.c
+4
-0
No files found.
modules/access/bluray.c
View file @
2eb87d93
...
@@ -97,6 +97,7 @@ struct demux_sys_t
...
@@ -97,6 +97,7 @@ struct demux_sys_t
/* Titles */
/* Titles */
unsigned
int
i_title
;
unsigned
int
i_title
;
unsigned
int
i_longest_title
;
unsigned
int
i_longest_title
;
unsigned
int
i_current_clip
;
input_title_t
**
pp_title
;
input_title_t
**
pp_title
;
/* Meta informations */
/* Meta informations */
...
@@ -1039,12 +1040,15 @@ static int blurayControl(demux_t *p_demux, int query, va_list args)
...
@@ -1039,12 +1040,15 @@ static int blurayControl(demux_t *p_demux, int query, va_list args)
static
void
blurayHandleEvent
(
demux_t
*
p_demux
,
const
BD_EVENT
*
e
)
static
void
blurayHandleEvent
(
demux_t
*
p_demux
,
const
BD_EVENT
*
e
)
{
{
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
switch
(
e
->
event
)
switch
(
e
->
event
)
{
{
case
BD_EVENT_TITLE
:
case
BD_EVENT_TITLE
:
blurayUpdateTitle
(
p_demux
,
e
->
param
);
blurayUpdateTitle
(
p_demux
,
e
->
param
);
break
;
break
;
case
BD_EVENT_PLAYITEM
:
case
BD_EVENT_PLAYITEM
:
p_sys
->
i_current_clip
=
e
->
param
;
break
;
break
;
case
BD_EVENT_AUDIO_STREAM
:
case
BD_EVENT_AUDIO_STREAM
:
break
;
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