[][src]Struct dive::AudioSample

pub struct AudioSample { /* fields omitted */ }

An AudioSample (with surround sound 5.1 support).

Methods

impl AudioSample[src]

pub fn stereo(left: i16, right: i16) -> AudioSample[src]

Create stereo audio sample.

pub fn surround(
    front_left: i16,
    front_right: i16,
    front_center: i16,
    lfe: i16,
    surround_left: i16,
    surround_right: i16
) -> AudioSample
[src]

Create surround sound 5.1 audio sample.

  • Center: 0°.
  • Front-Left: -30°
  • Front-Right: 30°
  • Surround-Left: -110°
  • Surround-Right: 110°

source: https://en.wikipedia.org/wiki/5.1_surround_sound#Music

Auto Trait Implementations

impl Send for AudioSample

impl Sync for AudioSample

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.