[−][src]Struct rustdct::algorithm::Type4Naive
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]
pub fn process_dct4(&self, input: &mut [T], output: &mut [T])
[src]
impl<T: DCTnum> DST4<T> for Type4Naive<T>
[src]
pub fn process_dst4(&self, input: &mut [T], output: &mut [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]
T: RefUnwindSafe,
impl<T> Send for Type4Naive<T> where
T: Send,
[src]
T: Send,
impl<T> Sync for Type4Naive<T> where
T: Sync,
[src]
T: Sync,
impl<T> Unpin for Type4Naive<T>
[src]
impl<T> UnwindSafe for Type4Naive<T> where
T: UnwindSafe,
[src]
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,