Uses of Class
ddf.minim.AudioSample

Packages that use AudioSample
ddf.minim   
ddf.minim.javasound   
ddf.minim.spi   
 

Uses of AudioSample in ddf.minim
 

Methods in ddf.minim that return AudioSample
 AudioSample Minim.createSample(float[] samples, javax.sound.sampled.AudioFormat format)
          Creates an AudioSample using the provided samples and AudioFormat, with an output buffer size of 1024 samples.
 AudioSample Minim.createSample(float[] samples, javax.sound.sampled.AudioFormat format, int bufferSize)
          Creates an AudioSample using the provided samples and AudioFormat, with the desired output buffer size.
 AudioSample Minim.createSample(float[] left, float[] right, javax.sound.sampled.AudioFormat format)
          Creates an AudioSample using the provided left and right channel samples with an output buffer size of 1024.
 AudioSample Minim.createSample(float[] left, float[] right, javax.sound.sampled.AudioFormat format, int bufferSize)
          Creates an AudioSample using the provided left and right channel samples.
 AudioSample Minim.loadSample(java.lang.String filename)
          Loads the requested file into an AudioSample.
 AudioSample Minim.loadSample(java.lang.String filename, int bufferSize)
          Loads the requested file into an AudioSample.
 

Uses of AudioSample in ddf.minim.javasound
 

Methods in ddf.minim.javasound that return AudioSample
 AudioSample JSMinim.getAudioSample(float[] samples, javax.sound.sampled.AudioFormat format, int bufferSize)
           
 AudioSample JSMinim.getAudioSample(float[] left, float[] right, javax.sound.sampled.AudioFormat format, int bufferSize)
           
 AudioSample JSMinim.getAudioSample(java.lang.String filename, int bufferSize)
           
 

Uses of AudioSample in ddf.minim.spi
 

Methods in ddf.minim.spi that return AudioSample
 AudioSample MinimServiceProvider.getAudioSample(float[] samples, javax.sound.sampled.AudioFormat format, int bufferSize)
          Should return an AudioSample that will store the provided samples.
 AudioSample MinimServiceProvider.getAudioSample(float[] left, float[] right, javax.sound.sampled.AudioFormat format, int bufferSize)
          Should return an AudioSample that will store the provided samples.
 AudioSample MinimServiceProvider.getAudioSample(java.lang.String filename, int bufferSize)
          Should return an AudioSample that will load the requested file into memory.