Commit 600580b9 authored by jehan's avatar jehan
Browse files

add playLevel java api

parent 484d9f09
No related merge requests found
Showing 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
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment