quentinc.audio
Class Echo

java.lang.Object
  extended by quentinc.audio.DSP
      extended by quentinc.audio.Echo

public class Echo
extends DSP


Constructor Summary
Echo(AudioManager mgr)
           
Echo(AudioManager mgr, float delay2, float vol2)
           
 
Method Summary
 float getDelay()
           
 float getVolume()
           
 int process(Channel ch, short[] buf, int start, int end)
          Process a chunk of audio
 Echo setDelay(float f)
           
 Echo setVolume(float f)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Echo

public Echo(AudioManager mgr,
            float delay2,
            float vol2)

Echo

public Echo(AudioManager mgr)
Method Detail

setVolume

public Echo setVolume(float f)

getVolume

public float getVolume()

setDelay

public Echo setDelay(float f)

getDelay

public float getDelay()

process

public int process(Channel ch,
                   short[] buf,
                   int start,
                   int end)
Description copied from class: DSP
Process a chunk of audio

Specified by:
process in class DSP