Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
c2eea782
Commit
c2eea782
authored
Mar 07, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not assume xid and hwnd are in a union
parent
0d927775
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
src/control/media_player.c
src/control/media_player.c
+15
-0
No files found.
src/control/media_player.c
View file @
c2eea782
...
...
@@ -765,7 +765,14 @@ void libvlc_media_player_set_drawable( libvlc_media_player_t *p_mi,
{
input_thread_t
*
p_input_thread
;
#ifdef WIN32
if
(
sizeof
(
HWND
)
<=
sizeof
(
libvlc_drawable_t
))
p_mi
->
drawable
.
hwnd
=
(
HWND
)
drawable
;
else
libvlc_exception_raise
(
p_e
,
"Operation not supported"
);
#else
p_mi
->
drawable
.
xid
=
drawable
;
#endif
/* Allow on the fly drawable changing. This is tricky has this may
* not be supported by every vout. We though can't disable it
...
...
@@ -789,7 +796,15 @@ libvlc_media_player_get_drawable ( libvlc_media_player_t *p_mi,
libvlc_exception_t
*
p_e
)
{
VLC_UNUSED
(
p_e
);
#ifdef WIN32
if
(
sizeof
(
HWND
)
<=
sizeof
(
libvlc_drawable_t
))
return
(
libvlc_drawable_t
)
p_mi
->
drawable
.
hwnd
;
else
return
0
;
#else
return
p_mi
->
drawable
.
xid
;
#endif
}
/**************************************************************************
...
...
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