Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
47648bd4
Commit
47648bd4
authored
Jul 31, 2009
by
Olivier Aubert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix comments/variable names in includes
parent
5fe48f88
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
include/vlc/libvlc_media.h
include/vlc/libvlc_media.h
+1
-1
include/vlc/libvlc_media_list.h
include/vlc/libvlc_media_list.h
+2
-2
include/vlc/libvlc_media_player.h
include/vlc/libvlc_media_player.h
+9
-0
No files found.
include/vlc/libvlc_media.h
View file @
47648bd4
...
...
@@ -207,7 +207,7 @@ VLC_PUBLIC_API libvlc_media_t * libvlc_media_duplicate( libvlc_media_t * );
* Read the meta of the media.
*
* \param p_meta_desc the media to read
* \param e_meta
_desc
the meta to read
* \param e_meta the meta to read
* \param p_e an initialized exception pointer
* \return the media's meta
*/
...
...
include/vlc/libvlc_media_list.h
View file @
47648bd4
...
...
@@ -230,8 +230,8 @@ VLC_PUBLIC_API libvlc_media_list_view_t *
libvlc_exception_t
*
);
VLC_PUBLIC_API
libvlc_media_list_view_t
*
libvlc_media_list_hierarchical_node_view
(
libvlc_media_list_t
*
,
libvlc_exception_t
*
);
libvlc_media_list_hierarchical_node_view
(
libvlc_media_list_t
*
p_ml
,
libvlc_exception_t
*
p_ex
);
/**
* Get libvlc_event_manager from this media list instance.
...
...
include/vlc/libvlc_media_player.h
View file @
47648bd4
...
...
@@ -227,6 +227,7 @@ VLC_PUBLIC_API void libvlc_media_player_set_agl ( libvlc_media_player_t *p_mi, u
/**
* Get the agl handler previously set with libvlc_media_player_set_agl().
*
* \param p_mi the Media Player
* \return the agl handler or 0 if none where set
*/
VLC_PUBLIC_API
uint32_t
libvlc_media_player_get_agl
(
libvlc_media_player_t
*
p_mi
);
...
...
@@ -355,6 +356,14 @@ VLC_PUBLIC_API int libvlc_media_player_get_chapter( libvlc_media_player_t *, lib
* \return number of chapters in movie
*/
VLC_PUBLIC_API
int
libvlc_media_player_get_chapter_count
(
libvlc_media_player_t
*
,
libvlc_exception_t
*
);
/**
* Will the player play
*
* \param p_mi the Media Player
* \param p_e an initialized exception pointer
* \return boolean
*/
VLC_PUBLIC_API
int
libvlc_media_player_will_play
(
libvlc_media_player_t
*
,
libvlc_exception_t
*
);
/**
...
...
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