[][src]Struct rustdct::algorithm::Dst5Naive

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

Naive O(n^2 ) DST Type 5 implementation

This implementation is primarily used to test other DST5 algorithms.

// Computes a naive DST5 of size 23
use rustdct::Dst5;
use rustdct::algorithm::Dst5Naive;

let len = 23;
let mut buffer = vec![0f32; len];

let dst = Dst5Naive::new(len);
dst.process_dst5(&mut buffer);

Implementations

impl<T: DctNum> Dst5Naive<T>[src]

pub fn new(len: usize) -> Self[src]

Creates a new DST5 context that will process signals of length len

Trait Implementations

impl<T: DctNum> Dst5<T> for Dst5Naive<T>[src]

impl<T> Length for Dst5Naive<T>[src]

impl<T> RequiredScratch for Dst5Naive<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Dst5Naive<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Dst5Naive<T> where
    T: Send
[src]

impl<T> Sync for Dst5Naive<T> where
    T: Sync
[src]

impl<T> Unpin for Dst5Naive<T>[src]

impl<T> UnwindSafe for Dst5Naive<T> where
    T: UnwindSafe
[src]

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.