Adds MIN and MAX values for sound levels

cusax-fix
Emil Ivov 17 years ago
parent bf6bc1ce83
commit 9908f9991f

@ -28,6 +28,19 @@
*/
public class SoundLevelChangeEvent extends EventObject
{
/**
* The maximum level that can be reported for a participant in a conference.
* Level values should be distributed among MAX_LEVEL and MIN_LEVEL in a
* way that would appear uniform to users.
*/
public static final int MAX_LEVEL = 255;
/**
* The maximum (zero) level that can be reported for a participant in a
* conference. Level values should be distributed among MAX_LEVEL and
* MIN_LEVEL in a way that would appear uniform to users.
*/
public static final int MIN_LEVEL = 0;
/**
* The hashtable mapping SSRC identifiers to sound levels.

Loading…
Cancel
Save