WaveShaperNode

Struct WaveShaperNode 

Source
pub(crate) struct WaveShaperNode {
    curve_set: bool,
    curve: Option<Vec<f32>>,
    oversample: OverSampleType,
    channel_info: ChannelInfo,
    upsampler: Option<State>,
    downsampler: Option<State>,
    tailtime_blocks_left: TailtimeBlocks,
}

Fields§

§curve_set: bool§curve: Option<Vec<f32>>§oversample: OverSampleType§channel_info: ChannelInfo§upsampler: Option<State>§downsampler: Option<State>§tailtime_blocks_left: TailtimeBlocks

Implementations§

Source§

impl WaveShaperNode

Source

pub fn new(options: WaveShaperNodeOptions, channel_info: ChannelInfo) -> Self

Source

fn handle_waveshaper_message( &mut self, message: WaveShaperNodeMessage, _sample_rate: f32, )

Source§

impl WaveShaperNode

Source

fn silence_produces_nonsilent_output(curve: &[f32]) -> bool

Source

fn apply_curve(buf: &mut [f32], curve: &[f32])

Source

fn resample( st: &mut SpeexResamplerState, chan: u8, input: &[f32], output: &mut [f32], ) -> usize

Trait Implementations§

Source§

impl AudioNodeCommon for WaveShaperNode

Source§

impl AudioNodeEngine for WaveShaperNode

Source§

fn node_type(&self) -> AudioNodeType

Source§

fn process(&mut self, inputs: Chunk, info: &BlockInfo) -> Chunk

Source§

fn message_specific(&mut self, msg: AudioNodeMessage, sample_rate: f32)

Messages specific to this node
Source§

fn message(&mut self, msg: AudioNodeMessage, sample_rate: f32)

Source§

fn input_count(&self) -> u32

Source§

fn output_count(&self) -> u32

Source§

fn channel_count(&self) -> u8

Number of input channels for each input port
Source§

fn channel_count_mode(&self) -> ChannelCountMode

Source§

fn channel_interpretation(&self) -> ChannelInterpretation

Source§

fn set_channel_interpretation(&mut self, i: ChannelInterpretation)

Source§

fn set_channel_count(&mut self, c: u8)

Source§

fn set_channel_count_mode(&mut self, m: ChannelCountMode)

Source§

fn destination_data(&mut self) -> Option<Chunk>

If we’re the destination node, extract the contained data
Source§

fn get_param(&mut self, _: ParamType) -> &mut Param

Source§

fn set_listenerdata(&mut self, _: Block)

Source§

impl MallocSizeOf for WaveShaperNode

Source§

fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself.

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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> MaybeBoxed<Box<T>> for T

Source§

fn maybe_boxed(self) -> Box<T>

Convert
Source§

impl<T> MaybeBoxed<T> for T

Source§

fn maybe_boxed(self) -> T

Convert
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T