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
e8b95df9
Commit
e8b95df9
authored
Dec 08, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc_media.h: fix documentation
parent
1bebc0de
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
13 deletions
+10
-13
include/vlc/libvlc_media.h
include/vlc/libvlc_media.h
+10
-13
No files found.
include/vlc/libvlc_media.h
View file @
e8b95df9
...
@@ -172,7 +172,7 @@ VLC_PUBLIC_API libvlc_media_t * libvlc_media_new_as_node(
...
@@ -172,7 +172,7 @@ VLC_PUBLIC_API libvlc_media_t * libvlc_media_new_as_node(
*
*
* The options are detailed in vlc --long-help, for instance "--sout-all"
* The options are detailed in vlc --long-help, for instance "--sout-all"
*
*
* \param p_
instance the instance
* \param p_
md the media descriptor
* \param ppsz_options the options (as a string)
* \param ppsz_options the options (as a string)
*/
*/
VLC_PUBLIC_API
void
libvlc_media_add_option
(
VLC_PUBLIC_API
void
libvlc_media_add_option
(
...
@@ -188,7 +188,7 @@ VLC_PUBLIC_API void libvlc_media_add_option(
...
@@ -188,7 +188,7 @@ VLC_PUBLIC_API void libvlc_media_add_option(
*
*
* The options are detailed in vlc --long-help, for instance "--sout-all"
* The options are detailed in vlc --long-help, for instance "--sout-all"
*
*
* \param p_
instance the instance
* \param p_
md the media descriptor
* \param ppsz_options the options (as a string)
* \param ppsz_options the options (as a string)
* \param i_flags the flags for this option
* \param i_flags the flags for this option
*/
*/
...
@@ -203,10 +203,9 @@ VLC_PUBLIC_API void libvlc_media_add_option_flag(
...
@@ -203,10 +203,9 @@ VLC_PUBLIC_API void libvlc_media_add_option_flag(
* libvlc_media_release() to decrement the reference count of a
* libvlc_media_release() to decrement the reference count of a
* media descriptor object.
* media descriptor object.
*
*
* \param p_m
eta_desc a media descriptor object.
* \param p_m
d the media descriptor
*/
*/
VLC_PUBLIC_API
void
libvlc_media_retain
(
VLC_PUBLIC_API
void
libvlc_media_retain
(
libvlc_media_t
*
p_md
);
libvlc_media_t
*
p_meta_desc
);
/**
/**
* Decrement the reference count of a media descriptor object. If the
* Decrement the reference count of a media descriptor object. If the
...
@@ -215,10 +214,9 @@ VLC_PUBLIC_API void libvlc_media_retain(
...
@@ -215,10 +214,9 @@ VLC_PUBLIC_API void libvlc_media_retain(
* to all listeners. If the media descriptor object has been released it
* to all listeners. If the media descriptor object has been released it
* should not be used again.
* should not be used again.
*
*
* \param p_m
eta_desc a media descriptor object.
* \param p_m
d the media descriptor
*/
*/
VLC_PUBLIC_API
void
libvlc_media_release
(
VLC_PUBLIC_API
void
libvlc_media_release
(
libvlc_media_t
*
p_md
);
libvlc_media_t
*
p_meta_desc
);
/**
/**
...
@@ -234,17 +232,16 @@ VLC_PUBLIC_API char * libvlc_media_get_mrl( libvlc_media_t * p_md );
...
@@ -234,17 +232,16 @@ VLC_PUBLIC_API char * libvlc_media_get_mrl( libvlc_media_t * p_md );
*
*
* \param p_meta_desc a media descriptor object.
* \param p_meta_desc a media descriptor object.
*/
*/
VLC_PUBLIC_API
libvlc_media_t
*
libvlc_media_duplicate
(
libvlc_media_t
*
);
VLC_PUBLIC_API
libvlc_media_t
*
libvlc_media_duplicate
(
libvlc_media_t
*
p_md
);
/**
/**
* Read the meta of the media.
* Read the meta of the media.
*
*
* \param p_m
eta_desc the media to read
* \param p_m
d the media descriptor
* \param e_meta the meta to read
* \param e_meta the meta to read
* \return the media's meta
* \return the media's meta
*/
*/
VLC_PUBLIC_API
char
*
libvlc_media_get_meta
(
VLC_PUBLIC_API
char
*
libvlc_media_get_meta
(
libvlc_media_t
*
p_md
,
libvlc_media_t
*
p_meta_desc
,
libvlc_meta_t
e_meta
);
libvlc_meta_t
e_meta
);
/**
/**
...
...
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