Class RawAudioStreamProperties
- Object
-
- RawAudioStreamProperties
-
- Direct Known Subclasses:
RawIncomingAudioStreamProperties
,RawOutgoingAudioStreamProperties
public abstract class RawAudioStreamProperties extends Object
Base Class for All Raw Audio Properties needed to describe RawAudioStreams
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.AudioStreamChannelMode
getChannelMode()
Channel Mode of Audio StreamAudioStreamFormat
getFormat()
Audio Format of Audio Stream in the CallAudioStreamSampleRate
getSampleRate()
Sample Rate of Audio StreamRawAudioStreamProperties
setChannelMode(AudioStreamChannelMode value)
Channel Mode of Audio StreamRawAudioStreamProperties
setFormat(AudioStreamFormat value)
Audio Format of Audio Stream in the CallRawAudioStreamProperties
setSampleRate(AudioStreamSampleRate value)
Sample Rate of Audio Stream
-
-
-
Method Detail
-
finalize
protected void finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.- Overrides:
finalize
in classObject
-
getSampleRate
public AudioStreamSampleRate getSampleRate()
Sample Rate of Audio Stream
-
setSampleRate
public RawAudioStreamProperties setSampleRate(AudioStreamSampleRate value)
Sample Rate of Audio Stream- Parameters:
value
- The new value.
-
getChannelMode
public AudioStreamChannelMode getChannelMode()
Channel Mode of Audio Stream
-
setChannelMode
public RawAudioStreamProperties setChannelMode(AudioStreamChannelMode value)
Channel Mode of Audio Stream- Parameters:
value
- The new value.
-
getFormat
public AudioStreamFormat getFormat()
Audio Format of Audio Stream in the Call
-
setFormat
public RawAudioStreamProperties setFormat(AudioStreamFormat value)
Audio Format of Audio Stream in the Call- Parameters:
value
- The new value.
-
-