Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Steve Lhomme
vlc
Commits
365a0496
Commit
365a0496
authored
Oct 06, 2016
by
Thomas Guillem
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc/media_player: fix warnings
parent
f71484fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
lib/media_player.c
lib/media_player.c
+3
-2
No files found.
lib/media_player.c
View file @
365a0496
...
...
@@ -1744,7 +1744,7 @@ int libvlc_media_player_is_seekable( libvlc_media_player_t *p_mi )
void
libvlc_media_player_navigate
(
libvlc_media_player_t
*
p_mi
,
unsigned
navigate
)
{
static
const
vlc_action_t
map
[]
=
static
const
enum
input_query_e
map
[]
=
{
INPUT_NAV_ACTIVATE
,
INPUT_NAV_UP
,
INPUT_NAV_DOWN
,
INPUT_NAV_LEFT
,
INPUT_NAV_RIGHT
,
INPUT_NAV_POPUP
,
...
...
@@ -1928,7 +1928,8 @@ int libvlc_media_player_add_slave( libvlc_media_player_t *p_mi,
}
else
{
int
i_ret
=
input_AddSlave
(
p_input_thread
,
i_type
,
psz_uri
,
b_select
);
int
i_ret
=
input_AddSlave
(
p_input_thread
,
(
enum
slave_type
)
i_type
,
psz_uri
,
b_select
);
vlc_object_release
(
p_input_thread
);
return
i_ret
==
VLC_SUCCESS
?
0
:
-
1
;
...
...
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