]> sjero.net Git - linphone/commitdiff
Fix rejection of SIP calls while in GSM call.
authorGuillaume Beraudo <guillaume.beraudo@belledonne-communications.com>
Thu, 3 Nov 2011 15:12:38 +0000 (16:12 +0100)
committerGuillaume Beraudo <guillaume.beraudo@belledonne-communications.com>
Thu, 3 Nov 2011 15:15:50 +0000 (16:15 +0100)
Audio was messed up.

LinphoneCoreImpl.java

index 7c1f6d90549e3876a50cb23d7d0f8e33cfaf549b..5d9d634dbe0e35340294052eb64527819eb1b2c0 100644 (file)
@@ -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);
+       }
 }