struct MfAudio {}Fields§
§reader: IMFSourceReader§stream: u32§duration: f64§rate: u32Format the reader delivers (48000/2 when MF converts for us).
ch: u32§fifo: Vec<f32>Decoded stereo @ SAMPLE_RATE; fifo_pos = output frame index of fifo[0] (valid when located).
fifo_pos: i64§located: bool§eof_at: Option<i64>Output frame index where the data ends (known once EOF was hit).
origin: i64Output frame index of the first sample = content t=0 (see MfVideo::origin).
mp4: bool§rs: Resamp§tmp: Vec<f32>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MfAudio
impl RefUnwindSafe for MfAudio
impl !Sync for MfAudio
impl Unpin for MfAudio
impl UnwindSafe for MfAudio
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more