Example #1
0
        public bool TrySetPlaybackDevice(string deviceId)
        {
            bool result = false;

            if (!string.IsNullOrWhiteSpace(deviceId) && MediaModule.linphone_core_sound_device_can_playback(softphone.LinphoneWrapper.LinphoneCore, deviceId))
            {
                int code = MediaModule.linphone_core_set_playback_device(softphone.LinphoneWrapper.LinphoneCore, deviceId);
                result = code != Constants.BOOL_T_FAILED_CODE;
            }
            return(result);
        }
Example #2
0
 public bool IsPlaybackDevice(string device)
 {
     return(MediaModule.linphone_core_sound_device_can_playback(softphone.LinphoneWrapper.LinphoneCore, device));
 }