DynamicsProcessing.Channel 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
DynamicsProcessing.Channel(DynamicsProcessing+Channel) | |
DynamicsProcessing.Channel(Single, Boolean, Int32, Boolean, Int32, Boolean, Int32, Boolean) |
Class constructor for Channel configuration. |
DynamicsProcessing.Channel(DynamicsProcessing+Channel)
[Android.Runtime.Register(".ctor", "(Landroid/media/audiofx/DynamicsProcessing$Channel;)V", "", ApiSince=28)]
public Channel (Android.Media.Audiofx.DynamicsProcessing.Channel cfg);
[<Android.Runtime.Register(".ctor", "(Landroid/media/audiofx/DynamicsProcessing$Channel;)V", "", ApiSince=28)>]
new Android.Media.Audiofx.DynamicsProcessing.Channel : Android.Media.Audiofx.DynamicsProcessing.Channel -> Android.Media.Audiofx.DynamicsProcessing.Channel
Parameters
- Attributes
Applies to
DynamicsProcessing.Channel(Single, Boolean, Int32, Boolean, Int32, Boolean, Int32, Boolean)
Class constructor for Channel configuration.
[Android.Runtime.Register(".ctor", "(FZIZIZIZ)V", "", ApiSince=28)]
public Channel (float inputGain, bool preEqInUse, int preEqBandCount, bool mbcInUse, int mbcBandCount, bool postEqInUse, int postEqBandCount, bool limiterInUse);
[<Android.Runtime.Register(".ctor", "(FZIZIZIZ)V", "", ApiSince=28)>]
new Android.Media.Audiofx.DynamicsProcessing.Channel : single * bool * int * bool * int * bool * int * bool -> Android.Media.Audiofx.DynamicsProcessing.Channel
Parameters
- inputGain
- Single
value in decibels (dB) of level change applied to the audio before processing. A value of 0 dB means no change.
- preEqInUse
- Boolean
true if PreEq stage will be used, false otherwise. This can't be changed later.
- preEqBandCount
- Int32
number of bands for PreEq stage. This can't be changed later.
- mbcInUse
- Boolean
true if Mbc stage will be used, false otherwise. This can't be changed later.
- mbcBandCount
- Int32
number of bands for Mbc stage. This can't be changed later.
- postEqInUse
- Boolean
true if PostEq stage will be used, false otherwise. This can't be changed later.
- postEqBandCount
- Int32
number of bands for PostEq stage. This can't be changed later.
- limiterInUse
- Boolean
true if Limiter stage will be used, false otherwise. This can't be changed later.
- Attributes
Remarks
Class constructor for Channel configuration.
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.