Example #1
0
 /// <summary>
 /// Set speaker gain between 0..1f
 /// </summary>
 /// <param name="linphoneCall"></param>
 /// <param name="value"></param>
 public void SetSpeakerValue(LinphoneCall linphoneCall, double value)
 {
     if (linphoneCall.IsExist())
     {
         MediaModule.linphone_call_set_speaker_volume_gain(linphoneCall.LinphoneCallPtr, (float)value);
     }
 }