[][src]Struct rustdct::algorithm::Type4Naive

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

Naive O(n^2 ) DCT Type 4 and DST Type 4 implementation

// Computes a naive DCT4 of size 23
use rustdct::{DCT4, DST4};
use rustdct::algorithm::Type4Naive;

let len = 23;
let naive = Type4Naive::new(len);
 
let mut dct4_input:  Vec<f32> = vec![0f32; len];
let mut dct4_output: Vec<f32> = vec![0f32; len];
naive.process_dct4(&mut dct4_input, &mut dct4_output);
 
let mut dst4_input:  Vec<f32> = vec![0f32; len];
let mut dst4_output: Vec<f32> = vec![0f32; len];
naive.process_dst4(&mut dst4_input, &mut dst4_output);

Implementations

impl<T: DCTnum> Type4Naive<T>[src]

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

Creates a new DCT4 and DTS4 context that will process signals of length len

Trait Implementations

impl<T: DCTnum> DCT4<T> for Type4Naive<T>[src]

impl<T: DCTnum> DST4<T> for Type4Naive<T>[src]

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

impl<T: DCTnum> TransformType4<T> for Type4Naive<T>[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for Type4Naive<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.