-
public class AudioOptionsAudio options represent the audio processing operations that are performed on the local audio track/source. These options can be set as a part of ConnectOptions when making outbound calls and/or as a part of AcceptOptions when receiving incoming calls.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classAudioOptions.BuilderBuilds new AudioOptions.
-
Field Summary
Fields Modifier and Type Field Description private final intaudioJitterBufferMaxPacketsprivate final intaudioJitterBufferMinDelayMs
-
Method Summary
Modifier and Type Method Description intgetAudioJitterBufferMaxPackets()Returns the audio receiver jitter buffer (NetEq) max capacity in number of packets. intgetAudioJitterBufferMinDelayMs()Returns the audio receiver jitter buffer (NetEq) minimum target delay in milliseconds. StringtoString()booleanisEchoCancellationEnabled()Returns whether echo cancellation is enabled. booleanisAutoGainControlEnabled()Returns whether automatic gain control is enabled. booleanisNoiseSuppressionEnabled()Returns whether noise suppression is enabled. booleanisHighpassFilterEnabled()Returns whether removal of background noise of lower frequencies is enabled. booleanequals(Object o)-
-
Method Detail
-
getAudioJitterBufferMaxPackets
int getAudioJitterBufferMaxPackets()
Returns the audio receiver jitter buffer (NetEq) max capacity in number of packets.
-
getAudioJitterBufferMinDelayMs
int getAudioJitterBufferMinDelayMs()
Returns the audio receiver jitter buffer (NetEq) minimum target delay in milliseconds.
-
isEchoCancellationEnabled
boolean isEchoCancellationEnabled()
Returns whether echo cancellation is enabled.
-
isAutoGainControlEnabled
boolean isAutoGainControlEnabled()
Returns whether automatic gain control is enabled.
-
isNoiseSuppressionEnabled
boolean isNoiseSuppressionEnabled()
Returns whether noise suppression is enabled.
-
isHighpassFilterEnabled
boolean isHighpassFilterEnabled()
Returns whether removal of background noise of lower frequencies is enabled.
-
-
-
-