AudioEffect.Descriptor Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AudioEffect.Descriptor() | |
AudioEffect.Descriptor(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
AudioEffect.Descriptor(String, String, String, String, String) |
AudioEffect.Descriptor()
[Android.Runtime.Register(".ctor", "()V", "")]
public Descriptor ();
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
AudioEffect.Descriptor(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected Descriptor (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Media.Audiofx.AudioEffect.Descriptor : nativeint * Android.Runtime.JniHandleOwnership -> Android.Media.Audiofx.AudioEffect.Descriptor
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
AudioEffect.Descriptor(String, String, String, String, String)
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "")]
public Descriptor (string? type, string? uuid, string? connectMode, string? name, string? implementor);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "")>]
new Android.Media.Audiofx.AudioEffect.Descriptor : string * string * string * string * string -> Android.Media.Audiofx.AudioEffect.Descriptor
Parameters
- type
- String
UUID identifying the effect type. May be one of:
AudioEffect#EFFECT_TYPE_AEC
, AudioEffect#EFFECT_TYPE_AGC
,
AudioEffect#EFFECT_TYPE_BASS_BOOST
, AudioEffect#EFFECT_TYPE_ENV_REVERB
,
AudioEffect#EFFECT_TYPE_EQUALIZER
, AudioEffect#EFFECT_TYPE_NS
,
AudioEffect#EFFECT_TYPE_PRESET_REVERB
,
AudioEffect#EFFECT_TYPE_VIRTUALIZER
,
AudioEffect#EFFECT_TYPE_DYNAMICS_PROCESSING
,
AudioEffect#EFFECT_TYPE_HAPTIC_GENERATOR
.
- uuid
- String
UUID for this particular implementation
- connectMode
- String
#EFFECT_INSERT
or #EFFECT_AUXILIARY
- name
- String
human readable effect name
- implementor
- String
human readable effect implementor name
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.