mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-01 18:59:25 +00:00
add playLevel java api
This commit is contained in:
parent
484d9f0999
commit
600580b972
1 changed files with 14 additions and 3 deletions
|
|
@ -22,6 +22,8 @@ package org.linphone.core;
|
|||
import java.util.Vector;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public interface LinphoneCore {
|
||||
/*
|
||||
|
|
@ -176,6 +178,17 @@ public interface LinphoneCore {
|
|||
* @return level in db
|
||||
*/
|
||||
public float getPlaybackGain();
|
||||
/**
|
||||
* set play level
|
||||
* @param level [0..100]
|
||||
*/
|
||||
public void setPlayLevel(int level);
|
||||
/**
|
||||
* get playback level [0..100];
|
||||
* -1 if not cannot be determined
|
||||
* @return
|
||||
*/
|
||||
public int getPlayLevel();
|
||||
/**
|
||||
* Mutes or unmutes the local microphone.
|
||||
* @param isMuted
|
||||
|
|
@ -197,7 +210,6 @@ public interface LinphoneCore {
|
|||
*/
|
||||
public void clearCallLogs();
|
||||
|
||||
<<<<<<< master
|
||||
|
||||
/***
|
||||
* get payload type from mime type an clock rate
|
||||
|
|
@ -212,7 +224,6 @@ public interface LinphoneCore {
|
|||
|
||||
public boolean isEchoCancellationEnabled();
|
||||
|
||||
=======
|
||||
public void setSignalingTransport(Transport aTransport);
|
||||
>>>>>>> local
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue