[][src]Enum agorartc_sys::agorartc::AUDIO_REVERB_TYPE

pub enum AUDIO_REVERB_TYPE {
    AUDIO_REVERB_DRY_LEVEL,
    AUDIO_REVERB_WET_LEVEL,
    AUDIO_REVERB_ROOM_SIZE,
    AUDIO_REVERB_WET_DELAY,
    AUDIO_REVERB_STRENGTH,
}

Audio reverberation types.

Variants

AUDIO_REVERB_DRY_LEVEL

0: The level of the dry signal (db). The value is between -20 and 10.

AUDIO_REVERB_WET_LEVEL

1: The level of the early reflection signal (wet signal) (dB). The value is between -20 and 10.

AUDIO_REVERB_ROOM_SIZE

2: The room size of the reflection. The value is between 0 and 100.

AUDIO_REVERB_WET_DELAY

3: The length of the initial delay of the wet signal (ms). The value is between 0 and 200.

AUDIO_REVERB_STRENGTH

4: The reverberation strength. The value is between 0 and 100.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.