java.lang.Object | |
↳ | android.media.audiofx.AudioEffect.Descriptor |
The effect descriptor contains information on a particular effect implemented in the audio framework:
EFFECT_INSERT
, EFFECT_AUXILIARY
or {at_link #EFFECT_PRE_PROCESSING}queryEffects()
returns an array of Descriptors to facilitate effects enumeration.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
connectMode | Indicates if the effect is of insert category EFFECT_INSERT , auxiliary category EFFECT_AUXILIARY or pre processing category {at_link #EFFECT_PRE_PROCESSING}. |
|||||||||
|
implementor | Human readable effect implementor name | |||||||||
|
name | Human readable effect name | |||||||||
|
type | Indicates the generic type of the effect (Equalizer, Bass boost ...). | |||||||||
|
uuid | Indicates the particular implementation of the effect in that type. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
|
||||||||||
|
|
[Expand]
Inherited Methods
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Indicates if the effect is of insert category EFFECT_INSERT
, auxiliary category EFFECT_AUXILIARY
or pre processing category {at_link #EFFECT_PRE_PROCESSING}. Insert effects (Typically an Equalizer) are applied to the entire audio source and usually not shared by several sources. Auxiliary effects (typically a reverberator) are applied to part of the signal (wet) and the effect output is added to the original signal (dry). Audio pre processing are applied to audio captured on a particular AudioRecord.
Indicates the generic type of the effect (Equalizer, Bass boost ...). The UUID corresponds to the OpenSL ES Interface ID for this type of effect.
Indicates the particular implementation of the effect in that type. Several effects can have the same type but this uuid is unique to a given implementation.