From 453e6a5319d2dfc98d511718251b3e873735aefd Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Wed, 9 Nov 2011 17:28:51 +0100 Subject: [PATCH] add option to enable echo limiter, and fallback to it when echo limiter failed --- LinphoneCoreImpl.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/LinphoneCoreImpl.java b/LinphoneCoreImpl.java index 5d9d634db..7f63f0cb3 100644 --- a/LinphoneCoreImpl.java +++ b/LinphoneCoreImpl.java @@ -605,4 +605,9 @@ class LinphoneCoreImpl implements LinphoneCore { public void setMaxCalls(int max) { setMaxCalls(nativePtr, max); } + private native boolean isEchoLimiterEnabled(long nativePtr); + @Override + public boolean isEchoLimiterEnabled() { + return isEchoLimiterEnabled(nativePtr); + } }