From 75de919def265cf0141583220f0a47d51221b481 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Wed, 5 Aug 2015 17:25:05 +0200 Subject: [PATCH] Documents linphone_call_get_play_volume() and linphone_call_get_record_volume() --- coreapi/linphonecore.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/coreapi/linphonecore.h b/coreapi/linphonecore.h index e9a3d9161..8e1036a20 100644 --- a/coreapi/linphonecore.h +++ b/coreapi/linphonecore.h @@ -719,7 +719,21 @@ LINPHONE_PUBLIC LinphoneReason linphone_call_get_reason(const LinphoneCall *call LINPHONE_PUBLIC const LinphoneErrorInfo *linphone_call_get_error_info(const LinphoneCall *call); LINPHONE_PUBLIC const char *linphone_call_get_remote_user_agent(LinphoneCall *call); LINPHONE_PUBLIC const char *linphone_call_get_remote_contact(LinphoneCall *call); + +/** + * Get the mesured playback volume level. + * + * @param call The call. + * @return float Volume level in percentage. + */ LINPHONE_PUBLIC float linphone_call_get_play_volume(LinphoneCall *call); + +/** + * Get the mesured record volume level + * + * @param call The call. + * @return float Volume level in percentage. + */ LINPHONE_PUBLIC float linphone_call_get_record_volume(LinphoneCall *call); /**