Enum rfmod::DspSfxReverb [] [src]

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

DryLevel

Dry Level : Mix level of dry signal in output in mB. Ranges from -10000.0 to 0.0. Default is 0.

Room

Room : Room effect level at low frequencies in mB. Ranges from -10000.0 to 0.0. Default is -10000.0.

RoomHF

Room HF : Room effect high-frequency level re. low frequency level in mB. Ranges from -10000.0 to 0.0. Default is 0.0.

DecayTime

Decay Time : Reverberation decay time at low-frequencies in seconds. Ranges from 0.1 to 20.0. Default is 1.0.

DecayHFRatio

Decay HF Ratio : High-frequency to low-frequency decay time ratio. Ranges from 0.1 to 2.0. Default is 0.5.

ReflectionsLevel

Reflections : Early reflections level relative to room effect in mB. Ranges from -10000.0 to 1000.0. Default is -10000.0.

ReflectionsDelay

Reflect Delay : Delay time of first reflection in seconds. Ranges from 0.0 to 0.3. Default is 0.02.

ReverbLevel

Reverb : Late reverberation level relative to room effect in mB. Ranges from -10000.0 to 2000.0. Default is 0.0.

ReverbDelay

Reverb Delay : Late reverberation delay time relative to first reflection in seconds. Ranges from 0.0 to 0.1. Default is 0.04.

Diffusion

Diffusion : Reverberation diffusion (echo density) in percent. Ranges from 0.0 to 100.0. Default is 100.0.

Density

Density : Reverberation density (modal density) in percent. Ranges from 0.0 to 100.0. Default is 100.0.

HFReference

HF Reference : Reference high frequency in Hz. Ranges from 20.0 to 20000.0. Default is 5000.0.

RoomLF

Room LF : Room effect low-frequency level in mB. Ranges from -10000.0 to 0.0. Default is 0.0.

LFReference

LF Reference : Reference low-frequency in Hz. Ranges from 20.0 to 1000.0. Default is 250.0.

Trait Implementations

impl Copy for DspSfxReverb
[src]

impl Debug for DspSfxReverb
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialOrd for DspSfxReverb
[src]

fn partial_cmp(&self, __arg_0: &DspSfxReverb) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

fn lt(&self, other: &Rhs) -> bool
1.0.0

This method tests less than (for self and other) and is used by the < operator. Read more

fn le(&self, other: &Rhs) -> bool
1.0.0

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) -> bool
1.0.0

This method tests greater than (for self and other) and is used by the > operator. Read more

fn ge(&self, other: &Rhs) -> bool
1.0.0

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq for DspSfxReverb
[src]

fn eq(&self, __arg_0: &DspSfxReverb) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Clone for DspSfxReverb
[src]

fn clone(&self) -> DspSfxReverb

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more