pub(crate) struct BiquadFilterNode {
    channel_info: ChannelInfo,
    filter: FilterType,
    frequency: Param,
    detune: Param,
    q: Param,
    gain: Param,
    b0: f64,
    b1: f64,
    b2: f64,
    a1: f64,
    a2: f64,
    state: SmallVec<[BiquadState; 2]>,
}
Expand description

https://webaudio.github.io/web-audio-api/#biquadfilternode

Fields§

§channel_info: ChannelInfo§filter: FilterType§frequency: Param§detune: Param§q: Param§gain: Param§b0: f64

The computed filter parameter b0 This is actually b0 / a0, we pre-divide for efficiency

§b1: f64

The computed filter parameter b1 This is actually b1 / a0, we pre-divide for efficiency

§b2: f64

The computed filter parameter b2 This is actually b2 / a0, we pre-divide for efficiency

§a1: f64

The computed filter parameter a1 This is actually a1 / a0, we pre-divide for efficiency

§a2: f64

The computed filter parameter a2 This is actually a2 / a0, we pre-divide for efficiency

§state: SmallVec<[BiquadState; 2]>

Stored filter state, this contains the last two frames of input and output values for every channel

Implementations§

source§

impl BiquadFilterNode

source

pub fn new( options: BiquadFilterNodeOptions, channel_info: ChannelInfo, sample_rate: f32 ) -> Self

source

pub fn update_parameters(&mut self, info: &BlockInfo, tick: Tick) -> bool

source

fn constant_z_transform(&mut self, b0: f64)

Set to the constant z-transform y[n] = b0 * x[n]

source

fn update_coefficients(&mut self, fs: f32)

Update the coefficients a1, a2, b0, b1, b2, given the sample_rate

See https://webaudio.github.io/web-audio-api/#filters-characteristics

Trait Implementations§

source§

impl AudioNodeCommon for BiquadFilterNode

source§

impl AudioNodeEngine for BiquadFilterNode

source§

fn node_type(&self) -> AudioNodeType

source§

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

source§

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

source§

fn message_specific(&mut self, message: 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 set_listenerdata(&mut self, _: Block)

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V