Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
5a1dc1c6
Commit
5a1dc1c6
authored
Jun 13, 2008
by
Pierre d'Herbemont
Browse files
libvlc: Fix compilation of libvlc_media_player_set_drawable().
parent
ec8b0a2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/control/media_player.c
View file @
5a1dc1c6
...
...
@@ -26,6 +26,7 @@
#include
<vlc/libvlc.h>
#include
<vlc_demux.h>
#include
<vlc_input.h>
#include
<vlc_vout.h>
#include
"libvlc.h"
static
int
...
...
@@ -685,7 +686,7 @@ void libvlc_media_player_set_drawable( libvlc_media_player_t *p_mi,
p_vout
=
vlc_object_find
(
p_input_thread
,
VLC_OBJECT_VOUT
,
FIND_CHILD
);
if
(
!
p_vout
)
libvlc_exception_raise
(
p_e
xception
,
"No active video output"
);
libvlc_exception_raise
(
p_e
,
"No active video output"
);
else
{
vout_Control
(
p_vout
,
VOUT_REPARENT
,
drawable
);
...
...
Write
Preview
Supports
Markdown
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