Uses of Class
toxi.audio.AudioBuffer

Packages that use AudioBuffer
toxi.audio   
toxi.music   
 

Uses of AudioBuffer in toxi.audio
 

Methods in toxi.audio that return AudioBuffer
 AudioBuffer AudioBuffer.configure(java.nio.ByteBuffer data, AudioBuffer.Format format, int freq)
           
 AudioBuffer AudioBuffer.configure(java.nio.ByteBuffer data, int format, int freq)
          Configure the audio buffer
static AudioBuffer SynthUtil.floatArrayTo16bitBuffer(JOALUtil audioSys, float[] raw, int rate)
           
static AudioBuffer SynthUtil.floatArrayTo16bitStereoBuffer(JOALUtil audioSys, float[] raw, int rate)
           
static AudioBuffer SynthUtil.floatArrayTo8bitBuffer(JOALUtil audioSys, float[] raw, int rate)
           
static AudioBuffer SynthUtil.floatArrayTo8bitStereoBuffer(JOALUtil audioSys, float[] raw, int rate)
           
 AudioBuffer[] JOALUtil.generateBuffers(int numBuffers)
          Creates the specified number of audio sample buffers and returns an array of AudioBuffer wrappers.
 AudioBuffer AudioSource.getBuffer()
          Gets the buffer associated with this source.
 AudioBuffer JOALUtil.loadBuffer(java.io.InputStream is)
          Loads a WAV file from the given InputStream.
 AudioBuffer JOALUtil.loadBuffer(java.lang.String fileName)
          Loads a WAV file (mono/stereo) from the specified file name
 

Methods in toxi.audio with parameters of type AudioBuffer
 boolean JOALUtil.deleteBuffer(AudioBuffer b)
           
 AudioSource AudioSource.setBuffer(AudioBuffer buffer)
          Sets the buffer associated with this source.
 

Constructors in toxi.audio with parameters of type AudioBuffer
AudioSource(net.java.games.joal.AL al, int id, AudioBuffer buf)
           
 

Uses of AudioBuffer in toxi.music
 

Constructors in toxi.music with parameters of type AudioBuffer
DelayedSamplePlayer(AudioSource src, AudioBuffer buffer, long delay)