Struct rubato::SincFixedOut[][src]

pub struct SincFixedOut<T> { /* fields omitted */ }

An asynchronous resampler that return a fixed number of audio frames. The number of input frames required is given by the frames_needed function.

The resampling is done by creating a number of intermediate points (defined by oversampling_factor) by sinc interpolation. The new samples are then calculated by interpolating between these points.

Implementations

impl<T> SincFixedOut<T> where
    T: Sample
[src]

pub fn new(
    resample_ratio: f64,
    parameters: InterpolationParameters,
    chunk_size: usize,
    nbr_channels: usize
) -> Self
[src]

Create a new SincFixedOut

Parameters are:

  • resample_ratio: Ratio between output and input sample rates.
  • parameters: Parameters for interpolation, see InterpolationParameters
  • chunk_size: size of output data in frames
  • nbr_channels: number of channels in input/output

pub fn new_with_interpolator(
    resample_ratio: f64,
    interpolation_type: InterpolationType,
    interpolator: Box<dyn SincInterpolator<T>>,
    chunk_size: usize,
    nbr_channels: usize
) -> Self
[src]

Create a new SincFixedOut using an existing Interpolator

Parameters are:

  • resample_ratio: Ratio between output and input sample rates.
  • interpolation_type: Parameters for interpolation, see InterpolationParameters
  • interpolator: The interpolator to use
  • chunk_size: size of output data in frames
  • nbr_channels: number of channels in input/output

Trait Implementations

impl<T> Resampler<T> for SincFixedOut<T> where
    T: Sample
[src]

fn nbr_frames_needed(&self) -> usize[src]

Query for the number of frames needed for the next call to “process”.

fn process(&mut self, wave_in: &[Vec<T>]) -> ResampleResult<Vec<Vec<T>>>[src]

Resample a chunk of audio. The required input length is provided by the “nbr_frames_needed” function, and the output length is fixed. If the waveform for a channel is empty, this channel will be ignored and produce a corresponding empty output waveform.

Errors

The function returns an error if the length of the input data is not equal to the number of channels defined when creating the instance, and the number of audio frames given by “nbr_frames_needed”.

fn set_resample_ratio(&mut self, new_ratio: f64) -> ResampleResult<()>[src]

Update the resample ratio. New value must be within +-10% of the original one

fn set_resample_ratio_relative(&mut self, rel_ratio: f64) -> ResampleResult<()>[src]

Update the resample ratio relative to the original one

Auto Trait Implementations

impl<T> !RefUnwindSafe for SincFixedOut<T>

impl<T> !Send for SincFixedOut<T>

impl<T> !Sync for SincFixedOut<T>

impl<T> Unpin for SincFixedOut<T> where
    T: Unpin

impl<T> !UnwindSafe for SincFixedOut<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.