Enum ambisonic::PlaybackConfiguration[][src]

pub enum PlaybackConfiguration {
    Stereo(StereoConfig),
    Hrtf(HrtfConfig),
}

Configure playback parameters

Variants

Stereo playback

Headphone playback using head related transfer functions

Trait Implementations

impl Default for PlaybackConfiguration
[src]

Returns the "default value" for a type. Read more

impl From<StereoConfig> for PlaybackConfiguration
[src]

Performs the conversion.

impl From<HrtfConfig> for PlaybackConfiguration
[src]

Performs the conversion.

Auto Trait Implementations