Example #1
0
        public double GetSpeakerSound(LinphoneCall linphoneCall)
        {
            var result = 0f;

            if (linphoneCall.IsExist())
            {
                result = MediaModule.linphone_call_get_speaker_volume_gain(linphoneCall.LinphoneCallPtr);
            }
            return(result);
        }