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
248faa09
Commit
248faa09
authored
Feb 02, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve libvlc drawable documentation
parent
76fd9cb9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
include/vlc/deprecated.h
include/vlc/deprecated.h
+3
-2
include/vlc/libvlc.h
include/vlc/libvlc.h
+12
-1
No files found.
include/vlc/deprecated.h
View file @
248faa09
...
...
@@ -37,10 +37,11 @@ extern "C" {
/**
* Set the default video output's parent.
*
* This setting will be used as default for a
ll video outputs
.
* This setting will be used as default for a
ny video output
.
*
* \param p_instance libvlc instance
* \param drawable the new parent window (Drawable on X11, CGrafPort on MacOSX, HWND on Win32)
* \param drawable the new parent window
* (see libvlc_media_player_set_drawable() for details)
* \param p_e an initialized exception pointer
* @deprecated Use libvlc_media_player_set_drawable
*/
...
...
include/vlc/libvlc.h
View file @
248faa09
...
...
@@ -550,7 +550,18 @@ VLC_PUBLIC_API void libvlc_media_player_pause ( libvlc_media_player_t *, libvlc_
VLC_PUBLIC_API
void
libvlc_media_player_stop
(
libvlc_media_player_t
*
,
libvlc_exception_t
*
);
/**
* Set the drawable where the media player should render its video output
* Set the drawable where the media player should render its video output.
*
* On Windows 32-bits, a window handle (HWND) is expected.
* On Windows 64-bits, this function will always fail.
*
* On OSX, a CGrafPort is expected.
*
* Otherwise, this shall be the identifier of an existing X11 drawable (window
* or pixmap). It is assumed that the X11 server is the same as the one in
* x11-display if configured. If XVideo is <b>not</b> supported, it is assumed
* that the drawable has the same pixmap format as the default X11 screen
* (especially depth, scan line pad, black pixel); this is a bug.
*
* \param p_mi the Media Player
* \param drawable the libvlc_drawable_t where the media player
...
...
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