mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 20:48:07 +00:00
Initial support to softvolume.
This commit is contained in:
parent
f596a19ad5
commit
1e2a21ea2a
1 changed files with 4 additions and 0 deletions
|
|
@ -94,6 +94,7 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
private native int getSignalingTransportPort(long nativePtr, int code);
|
||||
private native void setSignalingTransportPorts(long nativePtr, int udp, int tcp, int tls);
|
||||
private native void enableIpv6(long nativePtr,boolean enable);
|
||||
private native void adjustSoftwareVolume(long nativePtr,int db);
|
||||
|
||||
LinphoneCoreImpl(LinphoneCoreListener listener, File userConfig,File factoryConfig,Object userdata) throws IOException {
|
||||
mListener=listener;
|
||||
|
|
@ -454,5 +455,8 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
public void enableIpv6(boolean enable) {
|
||||
enableIpv6(nativePtr,enable);
|
||||
}
|
||||
public void adjustSoftwareVolume(int i) {
|
||||
adjustSoftwareVolume(nativePtr, i);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue