mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Revert JNI method setState
This commit is contained in:
parent
52d3826a16
commit
1905c95529
2 changed files with 0 additions and 13 deletions
|
|
@ -875,17 +875,6 @@ extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_setMediaEncryption
|
|||
linphone_call_params_set_media_encryption((LinphoneCallParams*)cp,(LinphoneMediaEncryption)jmenc);
|
||||
}
|
||||
|
||||
extern "C" void Java_org_linphone_core_LinphoneCallImpl_setState(JNIEnv* env,
|
||||
jobject thiz,
|
||||
jlong call,
|
||||
int state,
|
||||
jstring message) {
|
||||
|
||||
const char* jmessage = env->GetStringUTFChars(message, NULL);
|
||||
linphone_call_set_state((LinphoneCall*)call, (LinphoneCallState)state, jmessage);
|
||||
env->ReleaseStringUTFChars(message, jmessage);
|
||||
}
|
||||
|
||||
extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_getMediaEncryptionMandatory(JNIEnv* env
|
||||
,jobject thiz
|
||||
,jlong lc
|
||||
|
|
|
|||
|
|
@ -244,6 +244,4 @@ public interface LinphoneCall {
|
|||
boolean isInConference();
|
||||
|
||||
float getPlayVolume();
|
||||
|
||||
void setState(State state, String message);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue