vorbis_dsp_state

Struct vorbis_dsp_state 

Source
#[repr(C)]
pub struct vorbis_dsp_state {
Show 20 fields pub analysisp: c_int, pub vi: *mut vorbis_info, pub pcm: *mut *mut c_float, pub pcmret: *mut *mut c_float, pub pcm_storage: c_int, pub pcm_current: c_int, pub pcm_returned: c_int, pub preextrapolate: c_int, pub eofflag: c_int, pub lW: c_long, pub W: c_long, pub nW: c_long, pub centerW: c_long, pub granulepos: ogg_int64_t, pub sequence: ogg_int64_t, pub glue_bits: ogg_int64_t, pub time_bits: ogg_int64_t, pub floor_bits: ogg_int64_t, pub res_bits: ogg_int64_t, pub backend_state: *mut c_void,
}

Fields§

§analysisp: c_int§vi: *mut vorbis_info§pcm: *mut *mut c_float§pcmret: *mut *mut c_float§pcm_storage: c_int§pcm_current: c_int§pcm_returned: c_int§preextrapolate: c_int§eofflag: c_int§lW: c_long§W: c_long§nW: c_long§centerW: c_long§granulepos: ogg_int64_t§sequence: ogg_int64_t§glue_bits: ogg_int64_t§time_bits: ogg_int64_t§floor_bits: ogg_int64_t§res_bits: ogg_int64_t§backend_state: *mut c_void

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.