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
1cc9c243
Commit
1cc9c243
authored
Feb 01, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvdnav: implement navigation controls, remove key-action callback
parent
8c4e42a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
41 deletions
+43
-41
modules/access/dvdnav.c
modules/access/dvdnav.c
+43
-41
No files found.
modules/access/dvdnav.c
View file @
1cc9c243
...
@@ -56,7 +56,6 @@
...
@@ -56,7 +56,6 @@
#include <vlc_url.h>
#include <vlc_url.h>
#include <vlc_vout.h>
#include <vlc_vout.h>
#include <vlc_dialog.h>
#include <vlc_dialog.h>
#include <vlc_keys.h>
#include <vlc_iso_lang.h>
#include <vlc_iso_lang.h>
/* FIXME we should find a better way than including that */
/* FIXME we should find a better way than including that */
...
@@ -172,8 +171,6 @@ static int ControlInternal( demux_t *, int, ... );
...
@@ -172,8 +171,6 @@ static int ControlInternal( demux_t *, int, ... );
static
void
StillTimer
(
void
*
);
static
void
StillTimer
(
void
*
);
static
int
EventKey
(
vlc_object_t
*
,
char
const
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
static
int
EventMouse
(
vlc_object_t
*
,
char
const
*
,
static
int
EventMouse
(
vlc_object_t
*
,
char
const
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
vlc_value_t
,
vlc_value_t
,
void
*
);
static
int
EventIntf
(
vlc_object_t
*
,
char
const
*
,
static
int
EventIntf
(
vlc_object_t
*
,
char
const
*
,
...
@@ -366,8 +363,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -366,8 +363,6 @@ static int Open( vlc_object_t *p_this )
var_Create
(
p_sys
->
p_input
,
"menu-palette"
,
VLC_VAR_ADDRESS
);
var_Create
(
p_sys
->
p_input
,
"menu-palette"
,
VLC_VAR_ADDRESS
);
var_Create
(
p_sys
->
p_input
,
"highlight"
,
VLC_VAR_BOOL
);
var_Create
(
p_sys
->
p_input
,
"highlight"
,
VLC_VAR_BOOL
);
/* catch all key event */
var_AddCallback
(
p_demux
->
p_libvlc
,
"key-action"
,
EventKey
,
p_demux
);
/* catch vout creation event */
/* catch vout creation event */
var_AddCallback
(
p_sys
->
p_input
,
"intf-event"
,
EventIntf
,
p_demux
);
var_AddCallback
(
p_sys
->
p_input
,
"intf-event"
,
EventIntf
,
p_demux
);
...
@@ -396,9 +391,6 @@ static void Close( vlc_object_t *p_this )
...
@@ -396,9 +391,6 @@ static void Close( vlc_object_t *p_this )
var_DelCallback
(
p_sys
->
p_vout
,
"mouse-clicked"
,
EventMouse
,
p_demux
);
var_DelCallback
(
p_sys
->
p_vout
,
"mouse-clicked"
,
EventMouse
,
p_demux
);
}
}
/* Stop key event handler (FIXME: should really be per-vout too) */
var_DelCallback
(
p_demux
->
p_libvlc
,
"key-action"
,
EventKey
,
p_demux
);
/* Stop still image handler */
/* Stop still image handler */
if
(
p_sys
->
still
.
b_created
)
if
(
p_sys
->
still
.
b_created
)
vlc_timer_destroy
(
p_sys
->
still
.
timer
);
vlc_timer_destroy
(
p_sys
->
still
.
timer
);
...
@@ -578,10 +570,53 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
...
@@ -578,10 +570,53 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
case
DEMUX_NAV_ACTIVATE
:
{
pci_t
*
pci
=
dvdnav_get_current_nav_pci
(
p_sys
->
dvdnav
);
ButtonUpdate
(
p_demux
,
true
);
dvdnav_button_activate
(
p_sys
->
dvdnav
,
pci
);
break
;
}
case
DEMUX_NAV_UP
:
{
pci_t
*
pci
=
dvdnav_get_current_nav_pci
(
p_sys
->
dvdnav
);
dvdnav_upper_button_select
(
p_sys
->
dvdnav
,
pci
);
break
;
}
case
DEMUX_NAV_DOWN
:
{
pci_t
*
pci
=
dvdnav_get_current_nav_pci
(
p_sys
->
dvdnav
);
dvdnav_lower_button_select
(
p_sys
->
dvdnav
,
pci
);
break
;
}
case
DEMUX_NAV_LEFT
:
{
pci_t
*
pci
=
dvdnav_get_current_nav_pci
(
p_sys
->
dvdnav
);
dvdnav_left_button_select
(
p_sys
->
dvdnav
,
pci
);
break
;
}
case
DEMUX_NAV_RIGHT
:
{
pci_t
*
pci
=
dvdnav_get_current_nav_pci
(
p_sys
->
dvdnav
);
dvdnav_right_button_select
(
p_sys
->
dvdnav
,
pci
);
break
;
}
/* TODO implement others */
/* TODO implement others */
default:
default:
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
return
VLC_SUCCESS
;
}
}
static
int
ControlInternal
(
demux_t
*
p_demux
,
int
i_query
,
...
)
static
int
ControlInternal
(
demux_t
*
p_demux
,
int
i_query
,
...
)
...
@@ -1385,39 +1420,6 @@ static int EventMouse( vlc_object_t *p_vout, char const *psz_var,
...
@@ -1385,39 +1420,6 @@ static int EventMouse( vlc_object_t *p_vout, char const *psz_var,
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
static
int
EventKey
(
vlc_object_t
*
p_this
,
char
const
*
psz_var
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
p_data
)
{
demux_t
*
p_demux
=
p_data
;
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
/* FIXME: thread-safe ? */
pci_t
*
pci
=
dvdnav_get_current_nav_pci
(
p_sys
->
dvdnav
);
switch
(
newval
.
i_int
)
{
case
ACTIONID_NAV_LEFT
:
dvdnav_left_button_select
(
p_sys
->
dvdnav
,
pci
);
break
;
case
ACTIONID_NAV_RIGHT
:
dvdnav_right_button_select
(
p_sys
->
dvdnav
,
pci
);
break
;
case
ACTIONID_NAV_UP
:
dvdnav_upper_button_select
(
p_sys
->
dvdnav
,
pci
);
break
;
case
ACTIONID_NAV_DOWN
:
dvdnav_lower_button_select
(
p_sys
->
dvdnav
,
pci
);
break
;
case
ACTIONID_NAV_ACTIVATE
:
ButtonUpdate
(
p_demux
,
true
);
dvdnav_button_activate
(
p_sys
->
dvdnav
,
pci
);
break
;
}
(
void
)
p_this
;
(
void
)
psz_var
;
(
void
)
oldval
;
return
VLC_SUCCESS
;
}
static
int
EventIntf
(
vlc_object_t
*
p_input
,
char
const
*
psz_var
,
static
int
EventIntf
(
vlc_object_t
*
p_input
,
char
const
*
psz_var
,
vlc_value_t
oldval
,
vlc_value_t
val
,
void
*
p_data
)
vlc_value_t
oldval
,
vlc_value_t
val
,
void
*
p_data
)
{
{
...
...
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