Enum rfmod::DspSfxReverb
[−]
[src]
#[repr(C)]pub enum DspSfxReverb { DryLevel, Room, RoomHF, DecayTime, DecayHFRatio, ReflectionsLevel, ReflectionsDelay, ReverbLevel, ReverbDelay, Diffusion, Density, HFReference, RoomLF, LFReference, }
Parameter types for the FMOD_DSP_TYPE_SFXREVERB unit.
Used with Dsp::set_parameter and
Dsp::get_parameter.
Variants
DryLevelDry Level : Mix level of dry signal in output in mB. Ranges from -10000.0 to 0.0. Default is 0.
RoomRoom : Room effect level at low frequencies in mB. Ranges from -10000.0 to 0.0. Default is -10000.0.
RoomHFRoom HF : Room effect high-frequency level re. low frequency level in mB. Ranges from -10000.0 to 0.0. Default is 0.0.
DecayTimeDecay Time : Reverberation decay time at low-frequencies in seconds. Ranges from 0.1 to 20.0. Default is 1.0.
DecayHFRatioDecay HF Ratio : High-frequency to low-frequency decay time ratio. Ranges from 0.1 to 2.0. Default is 0.5.
ReflectionsLevelReflections : Early reflections level relative to room effect in mB. Ranges from -10000.0 to 1000.0. Default is -10000.0.
ReflectionsDelayReflect Delay : Delay time of first reflection in seconds. Ranges from 0.0 to 0.3. Default is 0.02.
ReverbLevelReverb : Late reverberation level relative to room effect in mB. Ranges from -10000.0 to 2000.0. Default is 0.0.
ReverbDelayReverb Delay : Late reverberation delay time relative to first reflection in seconds. Ranges from 0.0 to 0.1. Default is 0.04.
DiffusionDiffusion : Reverberation diffusion (echo density) in percent. Ranges from 0.0 to 100.0. Default is 100.0.
DensityDensity : Reverberation density (modal density) in percent. Ranges from 0.0 to 100.0. Default is 100.0.
HFReferenceHF Reference : Reference high frequency in Hz. Ranges from 20.0 to 20000.0. Default is 5000.0.
RoomLFRoom LF : Room effect low-frequency level in mB. Ranges from -10000.0 to 0.0. Default is 0.0.
LFReferenceLF Reference : Reference low-frequency in Hz. Ranges from 20.0 to 1000.0. Default is 250.0.
Trait Implementations
impl Clone for DspSfxReverb[src]
fn clone(&self) -> DspSfxReverb[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for DspSfxReverb[src]
fn eq(&self, __arg_0: &DspSfxReverb) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl PartialOrd for DspSfxReverb[src]
fn partial_cmp(&self, __arg_0: &DspSfxReverb) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more