Struct rubato::FftFixedInOut[][src]

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

A synchronous resampler that accepts a fixed number of audio frames for input and returns a fixed number of frames.

The resampling is done by FFT:ing the input data. The spectrum is then extended or truncated as well as multiplied with an antialiasing filter before it’s inverse transformed to get the resampled waveforms.

Implementations

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

pub fn new(
    fs_in: usize,
    fs_out: usize,
    chunk_size_in: usize,
    nbr_channels: usize
) -> Self
[src]

Create a new FftFixedInOut

Parameters are:

  • fs_in: Input sample rate.
  • fs_out: Output sample rate.
  • chunk_size_in: desired length of input data in frames, actual value may be different.
  • nbr_channels: number of channels in input/output.

Trait Implementations

impl<T> Resampler<T> for FftFixedInOut<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 input and output lengths are 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 size of the input data is not equal to the number of channels and input size defined when creating the instance.

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

Update the resample ratio. This is not supported by this resampler and always returns an error.

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

Update the resample ratio relative to the original one. This is not supported by this resampler and always returns an error.

Auto Trait Implementations

impl<T> !RefUnwindSafe for FftFixedInOut<T>

impl<T> Send for FftFixedInOut<T> where
    T: Send

impl<T> Sync for FftFixedInOut<T> where
    T: Sync

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

impl<T> !UnwindSafe for FftFixedInOut<T>

Blanket Implementations

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

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

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

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

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

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.

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.