[vlc-commits] player: fix typo and missing param in doc
Alexandre Janniaux
git at videolan.org
Fri Jun 21 14:42:19 CEST 2019
vlc | branch: master | Alexandre Janniaux <ajanni at videolabs.io> | Fri Jun 21 12:01:26 2019 +0200| [8feca3fda282f50f5f19055c5f2ac853510959bc] | committer: Thomas Guillem
player: fix typo and missing param in doc
Signed-off-by: Thomas Guillem <thomas at gllm.fr>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8feca3fda282f50f5f19055c5f2ac853510959bc
---
include/vlc_player.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/include/vlc_player.h b/include/vlc_player.h
index 54b8a85eb9..2fe226ab70 100644
--- a/include/vlc_player.h
+++ b/include/vlc_player.h
@@ -911,7 +911,7 @@ struct vlc_player_aout_cbs
*
* @param player unlocked player instance
* @param new_volume volume in the range [0;2.f]
- * @param data opaque pointer set by vlc_player_vout_AddListener()
+ * @param data opaque pointer set by vlc_player_aout_AddListener()
*/
void (*on_volume_changed)(vlc_player_t *player,
float new_volume, void *data);
@@ -923,7 +923,7 @@ struct vlc_player_aout_cbs
*
* @param player unlocked player instance
* @param new_mute true if muted
- * @param data opaque pointer set by vlc_player_vout_AddListener()
+ * @param data opaque pointer set by vlc_player_aout_AddListener()
*/
void (*on_mute_changed)(vlc_player_t *player,
bool new_muted, void *data);
@@ -933,6 +933,7 @@ struct vlc_player_aout_cbs
*
* @param player unlocked player instance
* @param device the device name
+ * @param data opaque pointer set by vlc_player_aout_AddListener()
*/
void (*on_device_changed)(vlc_player_t *player, const char *device,
void *data);
More information about the vlc-commits
mailing list