Fix rejection of SIP calls while in GSM call.

Audio was messed up.
This commit is contained in:
Guillaume Beraudo 2011-11-03 16:12:38 +01:00
parent 9fa4af5159
commit ab036c5fe0

View 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);
}
}