/**@class android.media.audiofx.DefaultEffect
@extends java.lang.Object
DefaultEffect is the base class for controlling default audio effects linked into the
Android audio framework.
<p>DefaultEffects are effects that get attached automatically to all AudioTracks,
AudioRecords, and MediaPlayer instances meeting some criteria.
<p>Applications should not use the DefaultEffect class directly but one of its derived classes
to control specific types of defaults:
<ul>
<li> {@link android.media.audiofx.SourceDefaultEffect}</li>
<li> {@link android.media.audiofx.StreamDefaultEffect}</li>
</ul>
<p>Creating a DefaultEffect object will register the corresponding effect engine as a default
for the specified criteria. Whenever an audio session meets the criteria, an AudioEffect will
be created and attached to it using the specified priority.
@hide
*/
var DefaultEffect = {
};