From ab036c5fe0f8510d2557177a7f6ae3c2834275b5 Mon Sep 17 00:00:00 2001 From: Guillaume Beraudo Date: Thu, 3 Nov 2011 16:12:38 +0100 Subject: [PATCH] Fix rejection of SIP calls while in GSM call. Audio was messed up. --- LinphoneCoreImpl.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/LinphoneCoreImpl.java b/LinphoneCoreImpl.java index 7c1f6d905..5d9d634db 100644 --- a/LinphoneCoreImpl.java +++ b/LinphoneCoreImpl.java @@ -599,4 +599,10 @@ class LinphoneCoreImpl implements LinphoneCore { public boolean soundResourcesLocked() { return soundResourcesLocked(nativePtr); } + + private native void setMaxCalls(long nativePtr, int max); + @Override + public void setMaxCalls(int max) { + setMaxCalls(nativePtr, max); + } }