Skip to content
Snippets Groups Projects
Commit 80ea20b2 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

libvlc: document the function to call to release some allocated structures

parent cfb18f36
No related branches found
No related tags found
No related merge requests found
......@@ -833,6 +833,7 @@ typedef enum libvlc_thumbnailer_seek_speed_t
* \param timeout A timeout value in ms, or 0 to disable timeout
*
* \return A valid opaque request object, or NULL in case of failure.
* It must be released by libvlc_media_thumbnail_cancel().
*
* \version libvlc 4.0 or later
*
......@@ -862,6 +863,7 @@ libvlc_media_thumbnail_request_by_time( libvlc_media_t *md,
* \param timeout A timeout value in ms, or 0 to disable timeout
*
* \return A valid opaque request object, or NULL in case of failure.
* It must be released by libvlc_media_thumbnail_cancel().
*
* \version libvlc 4.0 or later
*
......
......@@ -43,6 +43,7 @@ typedef struct libvlc_media_library_t libvlc_media_library_t;
*
* \param p_instance the libvlc instance
* \return a new object or NULL on error
* (it must be released by libvlc_media_library_release())
*/
LIBVLC_API libvlc_media_library_t *
libvlc_media_library_new( libvlc_instance_t * p_instance );
......
......@@ -56,6 +56,7 @@ typedef enum libvlc_playback_mode_t
*
* \param p_instance libvlc instance
* \return media list player instance or NULL on error
* (it must be released by libvlc_media_list_player_release())
*/
LIBVLC_API libvlc_media_list_player_t *
libvlc_media_list_player_new( libvlc_instance_t * p_instance );
......@@ -107,6 +108,7 @@ LIBVLC_API void
* \param p_mlp media list player instance
* \return media player instance
* \note the caller is responsible for releasing the returned instance
with libvlc_media_list_player_set_media_player().
*/
LIBVLC_API libvlc_media_player_t *
libvlc_media_list_player_get_media_player(libvlc_media_list_player_t * p_mlp);
......
......@@ -172,6 +172,7 @@ typedef struct libvlc_equalizer_t libvlc_equalizer_t;
* \param p_libvlc_instance the libvlc instance in which the Media Player
* should be created.
* \return a new media player object, or NULL on error.
* It must be released by libvlc_media_player_release().
*/
LIBVLC_API libvlc_media_player_t * libvlc_media_player_new( libvlc_instance_t *p_libvlc_instance );
......@@ -181,6 +182,7 @@ LIBVLC_API libvlc_media_player_t * libvlc_media_player_new( libvlc_instance_t *p
* \param p_md the media. Afterwards the p_md can be safely
* destroyed.
* \return a new media player object, or NULL on error.
* It must be released by libvlc_media_player_release().
*/
LIBVLC_API libvlc_media_player_t * libvlc_media_player_new_from_media( libvlc_media_t *p_md );
......@@ -2269,6 +2271,7 @@ LIBVLC_API libvlc_equalizer_t *libvlc_audio_equalizer_new( void );
*
* \param u_index index of the preset, counting from zero
* \return opaque equalizer handle, or NULL on error
* (it must be released with libvlc_audio_equalizer_release())
* \version LibVLC 2.2.0 or later
*/
LIBVLC_API libvlc_equalizer_t *libvlc_audio_equalizer_new_from_preset( unsigned u_index );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment