old mode 100755
new mode 100644
| | |
| | | |
| | | /** |
| | | * Check whether the device is flagged has crappy opengl |
| | | * @return TRUE if crappy opengl flag is set, FALSE otherwise |
| | | * @returns TRUE if crappy opengl flag is set, FALSE otherwise |
| | | * @ingroup misc |
| | | **/ |
| | | LINPHONE_PUBLIC bool_t linphone_core_has_crappy_opengl(LinphoneCore *lc); |
| | | |
| | | /** |
| | | * Check whether the device has a hardware echo canceller |
| | | * @return TRUE if it does, FALSE otherwise |
| | | * @returns TRUE if it does, FALSE otherwise |
| | | * @ingroup misc |
| | | **/ |
| | | LINPHONE_PUBLIC bool_t linphone_core_has_builtin_echo_canceller(LinphoneCore *lc); |
| | | |
| | | /** |
| | | * Check whether the device is echo canceller calibration is required |
| | | * @return TRUE if it is required, FALSE otherwise |
| | | * @returns TRUE if it is required, FALSE otherwise |
| | | * @ingroup misc |
| | | **/ |
| | | LINPHONE_PUBLIC bool_t linphone_core_is_echo_canceller_calibration_required(LinphoneCore *lc); |
| | |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_core_stop_dtmf_stream(LinphoneCore* lc); |
| | | |
| | | /** |
| | | * @ingroup IOS |
| | | * Special function to indicate if the audio session is activated. Must be called when ProviderDelegate of the callkit notifies that the audio session is activated or deactivated. |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_core_activate_audio_session(LinphoneCore* lc, bool_t actived); |
| | | |
| | | /** |
| | | * @ingroup IOS |
| | | * Special function to enable the callkit. |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_core_enable_callkit (LinphoneCore* lc, bool_t enabled); |
| | | |
| | | /** |
| | | * @ingroup IOS |
| | | * Special function to check if the callkit is enabled, False by default. |
| | | */ |
| | | LINPHONE_PUBLIC bool_t linphone_core_callkit_enabled (const LinphoneCore *lc); |
| | | |
| | | typedef bool_t (*LinphoneCoreIterateHook)(void *data); |
| | | |