Lines Matching defs:PresetReverb

32  * The PresetReverb class allows an application to configure the global reverb using a reverb preset.
36 * <p>An application creates a PresetReverb object to instantiate and control a reverb engine in the
38 * <p>The methods, parameter types and units exposed by the PresetReverb implementation are
42 * <p>The PresetReverb is an output mix auxiliary effect and should be created on
53 public class PresetReverb extends AudioEffect {
55 private final static String TAG = "PresetReverb";
62 * {@link android.media.audiofx.PresetReverb.OnParameterChangeListener}
113 * PresetReverb engine. As the same engine can be shared by several applications, this
117 * is not 0, the PresetReverb will be attached to the MediaPlayer or AudioTrack in the
118 * same audio session. Otherwise, the PresetReverb will apply to the output mix.
119 * As the PresetReverb is an auxiliary effect it is recommended to instantiate it on
126 public PresetReverb(int priority, int audioSession)
162 * The OnParameterChangeListener interface defines a method called by the PresetReverb
169 * PresetReverb engine.
170 * @param effect the PresetReverb on which the interface is registered.
175 void onParameterChange(PresetReverb effect, int status, int param, short value);
205 l.onParameterChange(PresetReverb.this, status, p, v);
248 if (!key.equals("PresetReverb")) {
250 "invalid settings for PresetReverb: " + key);
266 "PresetReverb"+
277 * @return a PresetReverb.Settings object containing all current parameters values
282 public PresetReverb.Settings getProperties()
294 * @param settings a PresetReverb.Settings object containing the properties to apply
299 public void setProperties(PresetReverb.Settings settings)