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
395f4e4a
Commit
395f4e4a
authored
Feb 01, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc: use input navigation controls
parent
1cc9c243
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
24 deletions
+10
-24
lib/media_player.c
lib/media_player.c
+10
-24
No files found.
lib/media_player.c
View file @
395f4e4a
...
@@ -39,22 +39,6 @@
...
@@ -39,22 +39,6 @@
#include "media_internal.h" // libvlc_media_set_state()
#include "media_internal.h" // libvlc_media_set_state()
#include "media_player_internal.h"
#include "media_player_internal.h"
/*
* mapping of libvlc_navigate_mode_t to vlc_action_t
*/
static
const
vlc_action_t
libvlc_navigate_to_action
[]
=
{
ACTIONID_NAV_ACTIVATE
,
ACTIONID_NAV_UP
,
ACTIONID_NAV_DOWN
,
ACTIONID_NAV_LEFT
,
ACTIONID_NAV_RIGHT
};
static
const
uint32_t
libvlc_navigate_to_action_size
=
\
sizeof
(
libvlc_navigate_to_action
)
/
sizeof
(
libvlc_navigate_to_action
[
0
]
);
static
int
static
int
input_seekable_changed
(
vlc_object_t
*
p_this
,
char
const
*
psz_cmd
,
input_seekable_changed
(
vlc_object_t
*
p_this
,
char
const
*
psz_cmd
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
...
@@ -1284,19 +1268,21 @@ int libvlc_media_player_is_seekable( libvlc_media_player_t *p_mi )
...
@@ -1284,19 +1268,21 @@ int libvlc_media_player_is_seekable( libvlc_media_player_t *p_mi )
void
libvlc_media_player_navigate
(
libvlc_media_player_t
*
p_mi
,
void
libvlc_media_player_navigate
(
libvlc_media_player_t
*
p_mi
,
unsigned
navigate
)
unsigned
navigate
)
{
{
input_thread_t
*
p_input_thread
;
static
const
vlc_action_t
map
[]
=
{
INPUT_NAV_ACTIVATE
,
INPUT_NAV_UP
,
INPUT_NAV_DOWN
,
INPUT_NAV_LEFT
,
INPUT_NAV_RIGHT
,
};
if
(
navigate
>=
libvlc_navigate_to_action_size
)
if
(
navigate
>=
sizeof
(
map
)
/
sizeof
(
map
[
0
])
)
return
;
return
;
p_input_thread
=
libvlc_get_input_thread
(
p_mi
);
input_thread_t
*
p_input
=
libvlc_get_input_thread
(
p_mi
);
if
(
!
p_input_thread
)
if
(
p_input
==
NULL
)
return
;
return
;
var_SetInteger
(
p_mi
->
p_libvlc_instance
->
p_libvlc_int
,
input_Control
(
p_input
,
map
[
navigate
],
NULL
);
"key-action"
,
libvlc_navigate_to_action
[
navigate
]
);
vlc_object_release
(
p_input
);
vlc_object_release
(
p_input_thread
);
}
}
/* internal function, used by audio, video */
/* internal function, used by audio, video */
...
...
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