]> git.sesse.net Git - vlc/commitdiff
Fix comments/variable names in includes
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Fri, 31 Jul 2009 15:21:14 +0000 (17:21 +0200)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Fri, 31 Jul 2009 15:21:14 +0000 (17:21 +0200)
include/vlc/libvlc_media.h
include/vlc/libvlc_media_list.h
include/vlc/libvlc_media_player.h

index a67778d98aba5b90a81fa9e6843375f44049236f..e21dca2c141d50859d268997a5373dc2dd4a05f1 100644 (file)
@@ -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
  */
index 102a23dd0c951914eb0a272903f759a1955475f7..b9cc188e1e627e9cee7fd0fe708487b7220254a7 100644 (file)
@@ -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.
index c4f9768f57393389206bd69a1e89f981c8d2f065..721742ad444a26a3a224c4df506a6c4b63d50b95 100644 (file)
@@ -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 *);
 
 /**