re-add new functions in LinphoneCore.java that was reverted by my fuck*** Eclipse when crashing.

This commit is contained in:
Simon Morlat 2014-03-15 10:49:47 +01:00
parent 815348c25c
commit c43ae68b80

View file

@ -1532,4 +1532,17 @@ public interface LinphoneCore {
* @param path a wav file to be played when such call failure happens.
*/
public void setCallErrorTone(Reason reason, String path);
/**
* Inform the core about the maximum transmission unit of the network.
* This is used for fragmenting video RTP packets to a size compatible with the network.
* @param mtu the MTU in bytes.
*/
public void setMtu(int mtu);
/**
* Returns the mtu value previously set by setMtu().
*
* @return the MTU in bytes.
*/
public int getMtu();
}