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
bddca171
Commit
bddca171
authored
Aug 08, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document media descriptor, media library, media service discover, vlm and message log functions.
parent
b7309d0b
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
196 additions
and
6 deletions
+196
-6
include/vlc/libvlc.h
include/vlc/libvlc.h
+185
-4
include/vlc/libvlc_vlm.h
include/vlc/libvlc_vlm.h
+10
-1
src/control/media.c
src/control/media.c
+1
-1
No files found.
include/vlc/libvlc.h
View file @
bddca171
This diff is collapsed.
Click to expand it.
include/vlc/libvlc_vlm.h
View file @
bddca171
...
...
@@ -214,9 +214,18 @@ VLC_PUBLIC_API void libvlc_vlm_seek_media( libvlc_instance_t *, char *,
* \param p_instance the instance
* \param psz_name the name of the broadcast
* \param p_e an initialized exception pointer
* \return string with information about named media
*/
VLC_PUBLIC_API
char
*
libvlc_vlm_show_media
(
libvlc_instance_t
*
,
char
*
,
libvlc_exception_t
*
);
/**
* Get information about media attribute from vlm.
*
* \param libvlc instance
* \param type of information
* \param default value
* \return value of media attribute
*/
#define LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( attr, returnType, getType, default)\
returnType libvlc_vlm_get_media_instance_## attr( libvlc_instance_t *, \
char *, int , libvlc_exception_t * );
...
...
@@ -237,4 +246,4 @@ VLC_PUBLIC_API LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( seekable, int, Bool, 0);
}
# endif
#endif
/* <vlc/libvlc.h> */
#endif
/* <vlc/libvlc
_vlm
.h> */
src/control/media.c
View file @
bddca171
...
...
@@ -404,7 +404,7 @@ libvlc_media_duplicate( libvlc_media_t *p_md_orig )
}
/**************************************************************************
*
Retain
a media descriptor object
*
Get mrl from
a media descriptor object
**************************************************************************/
char
*
libvlc_media_get_mrl
(
libvlc_media_t
*
p_md
,
...
...
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