Uses of Interface
ddf.minim.AudioEffect

Packages that use AudioEffect
ddf.minim   
ddf.minim.effects   
ddf.minim.spi   
 

Uses of AudioEffect in ddf.minim
 

Classes in ddf.minim that implement AudioEffect
 class EffectsChain
          An EffectsChain is a list of AudioEffects that gives you the ability to enable and disable effects, as you would in a typical DAW.
 

Methods in ddf.minim that return AudioEffect
 AudioEffect EffectsChain.get(int i)
          Gets the ith effect in the chain.
 AudioEffect Effectable.getEffect(int i)
          Returns the ith effect in the effect chain.
 AudioEffect AudioSource.getEffect(int i)
           
 AudioEffect EffectsChain.remove(int i)
          Removes and returns the ith effect from the chain.
 AudioEffect Effectable.removeEffect(int i)
          Removes and returns the ith effect in the effect chain.
 AudioEffect AudioSource.removeEffect(int i)
           
 

Methods in ddf.minim with parameters of type AudioEffect
 void EffectsChain.add(AudioEffect e)
          Adds e to the end of the chain.
 void Effectable.addEffect(AudioEffect effect)
          Adds an effect to the effects chain.
 void AudioSource.addEffect(AudioEffect effect)
           
 boolean EffectsChain.contains(AudioEffect e)
          Returns true if e is in this chain
 void EffectsChain.disable(AudioEffect e)
          Disables e if it is in the chain.
 void Effectable.disableEffect(AudioEffect effect)
          Disables effect if it is in the chain.
 void AudioSource.disableEffect(AudioEffect effect)
           
 void EffectsChain.enable(AudioEffect e)
          Enables e if it is in the chain.
 void Effectable.enableEffect(AudioEffect effect)
          Enables effect if it is in the chain.
 void AudioSource.enableEffect(AudioEffect effect)
           
 boolean Effectable.hasEffect(AudioEffect effect)
          Returns true if effect is in the chain.
 boolean AudioSource.hasEffect(AudioEffect e)
           
 boolean EffectsChain.isEnabled(AudioEffect e)
          Returns true if e is in the chain and is enabled.
 boolean Effectable.isEnabled(AudioEffect effect)
          Returns true if effect is in the chain and is also enabled.
 boolean AudioSource.isEnabled(AudioEffect effect)
           
 void EffectsChain.remove(AudioEffect e)
          Removes e from the chain.
 void Effectable.removeEffect(AudioEffect effect)
          Removes effect from the effects chain.
 void AudioSource.removeEffect(AudioEffect effect)
           
 

Uses of AudioEffect in ddf.minim.effects
 

Classes in ddf.minim.effects that implement AudioEffect
 class BandPass
          A band pass filter is a filter that filters out all frequencies except for those in a band centered on the current frequency of the filter.
 class ChebFilter
          A Chebyshev filter is an IIR filter that uses a particular method to calculate the coefficients of the filter.
 class Convolver
          Convolver is an effect that convolves a signal with a kernal.
 class HighPassSP
          HighPassSP is a single pole high pass filter.
 class IIRFilter
          An Infinite Impulse Response, or IIR, filter is a filter that uses a set of coefficients and previous filtered values to filter a stream of audio.
 class LowPassFS
          LowPassFS is a four stage low pass filter.
 class LowPassSP
          LowPassSP is a single pole low pass filter.
 class NotchFilter
          A notch filter removes a narrow band of frequencies from an audio signal.
 

Uses of AudioEffect in ddf.minim.spi
 

Methods in ddf.minim.spi with parameters of type AudioEffect
 void AudioOut.setAudioEffect(AudioEffect effect)
          Sets the AudioEffect to apply to the signal.