mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
add isEchoLimiterEnabled() java binding
This commit is contained in:
parent
2b499066df
commit
91b606875d
2 changed files with 13 additions and 0 deletions
|
|
@ -675,6 +675,13 @@ extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isEchoCancellationEn
|
|||
return linphone_core_echo_cancellation_enabled((LinphoneCore*)lc);
|
||||
}
|
||||
|
||||
extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isEchoLimiterEnabled(JNIEnv* env
|
||||
,jobject thiz
|
||||
,jlong lc
|
||||
) {
|
||||
return linphone_core_echo_limiter_enabled((LinphoneCore*)lc);
|
||||
}
|
||||
|
||||
extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_getCurrentCall(JNIEnv* env
|
||||
,jobject thiz
|
||||
,jlong lc
|
||||
|
|
|
|||
|
|
@ -433,6 +433,11 @@ public interface LinphoneCore {
|
|||
* @return true if echo cancellation is enabled.
|
||||
*/
|
||||
boolean isEchoCancellationEnabled();
|
||||
/**
|
||||
* Get echo limiter status (another method of doing echo suppressionn, more brute force)
|
||||
* @return true if echo limiter is enabled
|
||||
*/
|
||||
boolean isEchoLimiterEnabled();
|
||||
/**
|
||||
* @param transports used for signaling (TCP, UDP and TLS)
|
||||
*/
|
||||
|
|
@ -653,4 +658,5 @@ public interface LinphoneCore {
|
|||
* @return if media encryption is required for ougtoing calls
|
||||
*/
|
||||
boolean isMediaEncryptionMandatory();
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue