Trait audiostream::DynamicSource [-]  [+] [src]

pub trait DynamicSource {
    fn next_dyn<'a>(&'a mut self) -> Option<DynBuffer<'a>>;
}

A Source with format known only at runtime.

Required Methods

fn next_dyn<'a>(&'a mut self) -> Option<DynBuffer<'a>>

Pull the next buffer from the source

Implementors