Lines Matching defs:EnvironmentalReverb

39  * The EnvironmentalReverb class allows an application to control each reverb engine property in a
43 * <p>An application creates a EnvironmentalReverb object to instantiate and control a reverb engine
45 * <p>The methods, parameter types and units exposed by the EnvironmentalReverb implementation are
49 * <p>The EnvironmentalReverb is an output mix auxiliary effect and should be created on
60 public class EnvironmentalReverb extends AudioEffect {
62 private final static String TAG = "EnvironmentalReverb";
81 * {@link android.media.audiofx.EnvironmentalReverb.OnParameterChangeListener}
131 * EnvironmentalReverb engine. As the same engine can be shared by several applications, this
135 * is not 0, the EnvironmentalReverb will be attached to the MediaPlayer or AudioTrack in the
136 * same audio session. Otherwise, the EnvironmentalReverb will apply to the output mix.
137 * As the EnvironmentalReverb is an auxiliary effect it is recommended to instantiate it on
144 public EnvironmentalReverb(int priority, int audioSession)
439 * The OnParameterChangeListener interface defines a method called by the EnvironmentalReverb
446 * EnvironmentalReverb engine.
447 * @param effect the EnvironmentalReverb on which the interface is registered.
452 void onParameterChange(EnvironmentalReverb effect, int status, int param, int value);
484 l.onParameterChange(EnvironmentalReverb.this, status, p, v);
536 if (!key.equals("EnvironmentalReverb")) {
538 "invalid settings for EnvironmentalReverb: " + key);
600 "EnvironmentalReverb"+
622 * @return an EnvironmentalReverb.Settings object containing all current parameters values
627 public EnvironmentalReverb.Settings getProperties()
648 * @param settings a EnvironmentalReverb.Settings object containing the properties to apply
653 public void setProperties(EnvironmentalReverb.Settings settings)