public interface AudioOut extends AudioResource
AudioSythesizer
is an AudioStream
that
generates sound, rather than reading sound. It uses the attached
AudioSignal
and AudioEffect
to generate a
signal.Modifier and Type | Method and Description |
---|---|
int |
bufferSize() |
void |
setAudioEffect(AudioEffect effect)
Sets the AudioEffect to apply to the signal.
|
void |
setAudioListener(AudioListener listen)
Sets the AudioListener that will have sound broadcasted to it as the output generates.
|
void |
setAudioSignal(AudioSignal signal)
Sets the AudioSignal that this output will use to generate sound.
|
void |
setAudioStream(AudioStream stream)
Sets the AudioStream that this output will use to generate sound.
|
close, getControls, getFormat, open
int bufferSize()
void setAudioSignal(AudioSignal signal)
signal
- the AudioSignal used to generate soundvoid setAudioStream(AudioStream stream)
stream
- void setAudioEffect(AudioEffect effect)
effect
- the AudioEffect to apply to the signalvoid setAudioListener(AudioListener listen)
listen
-