DynamicsProcessing.MbcBand 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.MbcBand(DynamicsProcessing+MbcBand)
[Android.Runtime.Register(".ctor", "(Landroid/media/audiofx/DynamicsProcessing$MbcBand;)V", "", ApiSince=28)]
public MbcBand (Android.Media.Audiofx.DynamicsProcessing.MbcBand? cfg);
[<Android.Runtime.Register(".ctor", "(Landroid/media/audiofx/DynamicsProcessing$MbcBand;)V", "", ApiSince=28)>]
new Android.Media.Audiofx.DynamicsProcessing.MbcBand : Android.Media.Audiofx.DynamicsProcessing.MbcBand -> Android.Media.Audiofx.DynamicsProcessing.MbcBand
Parameters
- Attributes
Applies to
DynamicsProcessing.MbcBand(Boolean, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single)
Class constructor for MbcBand
[Android.Runtime.Register(".ctor", "(ZFFFFFFFFFF)V", "", ApiSince=28)]
public MbcBand (bool enabled, float cutoffFrequency, float attackTime, float releaseTime, float ratio, float threshold, float kneeWidth, float noiseGateThreshold, float expanderRatio, float preGain, float postGain);
[<Android.Runtime.Register(".ctor", "(ZFFFFFFFFFF)V", "", ApiSince=28)>]
new Android.Media.Audiofx.DynamicsProcessing.MbcBand : bool * single * single * single * single * single * single * single * single * single * single -> Android.Media.Audiofx.DynamicsProcessing.MbcBand
Parameters
- enabled
- Boolean
true if this band is currently used to process sound. When false, the band is effectively muted and sound set to zero.
- cutoffFrequency
- Single
topmost frequency number (in Hz) this band will process. The effective bandwidth for the band is then computed using this and the previous band topmost frequency (or 0 Hz for band number 0). Frequencies are expected to increase with band number, thus band 0 cutoffFrequency <= band 1 cutoffFrequency, and so on.
- attackTime
- Single
Attack Time for compressor in milliseconds (ms)
- releaseTime
- Single
Release Time for compressor in milliseconds (ms)
- ratio
- Single
Compressor ratio (N:1) (input:output)
- threshold
- Single
Compressor threshold measured in decibels (dB) from 0 dB Full Scale (dBFS).
- kneeWidth
- Single
Width in decibels (dB) around compressor threshold point.
- noiseGateThreshold
- Single
Noise gate threshold in decibels (dB) from 0 dB Full Scale (dBFS).
- expanderRatio
- Single
Expander ratio (1:N) (input:output) for signals below the Noise Gate Threshold.
- preGain
- Single
Gain applied to the signal BEFORE the compression.
- postGain
- Single
Gain applied to the signal AFTER compression.
- Attributes
Remarks
Class constructor for MbcBand
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.