Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
29e89fc9
Commit
29e89fc9
authored
Dec 30, 2011
by
Sylvain Berfini
🐮
Browse files
JNI method getPlayVolume() added
parent
5bf95231
Changes
2
Hide whitespace changes
Inline
Side-by-side
coreapi/linphonecore_jni.cc
View file @
29e89fc9
...
...
@@ -1574,6 +1574,10 @@ extern "C" void Java_org_linphone_core_LinphoneCallImpl_setAuthenticationTokenVe
linphone_call_set_authentication_token_verified
(
call
,
verified
);
}
extern
"C"
jfloat
Java_org_linphone_core_LinphoneCallImpl_getPlayVolume
(
JNIEnv
*
env
,
jobject
thiz
,
jlong
ptr
)
{
LinphoneCall
*
call
=
(
LinphoneCall
*
)
ptr
;
return
linphone_call_get_play_volume
(
call
);
}
extern
"C"
jboolean
Java_org_linphone_core_LinphoneCoreImpl_soundResourcesLocked
(
JNIEnv
*
env
,
jobject
thiz
,
jlong
ptr
){
return
linphone_core_sound_resources_locked
((
LinphoneCore
*
)
ptr
);
...
...
java/common/org/linphone/core/LinphoneCall.java
View file @
29e89fc9
...
...
@@ -240,4 +240,6 @@ public interface LinphoneCall {
void
setAuthenticationTokenVerified
(
boolean
verified
);
boolean
isInConference
();
float
getPlayVolume
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment