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
945142dc
Commit
945142dc
authored
Nov 20, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc_video_set_callbacks: add references
parent
32e2d537
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
include/vlc/libvlc_media_player.h
include/vlc/libvlc_media_player.h
+7
-7
No files found.
include/vlc/libvlc_media_player.h
View file @
945142dc
...
...
@@ -239,10 +239,10 @@ typedef void *(*libvlc_video_lock_cb)(void *opaque, void **planes);
* but before the picture is displayed.
*
* \param opaque private pointer as passed to libvlc_video_set_callbacks() [IN]
* \param picture private pointer returned from the libvlc_video_lock_cb
* \param picture private pointer returned from the
@ref
libvlc_video_lock_cb
* callback [IN]
* \param planes pixel planes as
allocated by the libvlc_video_lock_cb callback
*
(this parameter is provided for convenience only
) [IN]
* \param planes pixel planes as
defined by the @ref libvlc_video_lock_cb
*
callback (this parameter is only for convenience
) [IN]
*/
typedef
void
(
*
libvlc_video_unlock_cb
)(
void
*
opaque
,
void
*
picture
,
void
*
const
*
planes
);
...
...
@@ -254,7 +254,7 @@ typedef void (*libvlc_video_unlock_cb)(void *opaque, void *picture,
* clock, the display callback is invoked.
*
* \param opaque private pointer as passed to libvlc_video_set_callbacks() [IN]
* \param picture private pointer returned from the libvlc_video_lock_cb
* \param picture private pointer returned from the
@ref
libvlc_video_lock_cb
* callback [IN]
*/
typedef
void
(
*
libvlc_video_display_cb
)(
void
*
opaque
,
void
*
picture
);
...
...
@@ -264,9 +264,9 @@ typedef void (*libvlc_video_display_cb)(void *opaque, void *picture);
* in memory. Use libvlc_video_set_format() to configure the decoded format.
*
* \param mp the media player
* \param lock callback to lock video memory
* \param unlock callback to unlock video memory
* \param display callback to display video
* \param lock callback to lock video memory
(must not be NULL)
* \param unlock callback to unlock video memory
(or NULL if not needed)
* \param display callback to display video
(or NULL if not needed)
* \param opaque private pointer for the three callbacks (as first parameter)
* \version LibVLC 1.1.1 or later
*/
...
...
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