Module rustdct::dct1 [] [src]

Algorithms for computing the Discrete Cosine Transform Type 1

Structs

DCT1Naive

Naive O(n^2 ) DCT Type 1 implementation

DCT1ViaFFT

DCT Type 1 implementation that converts the problem into an O(nlogn) FFT of size 2 * (n - 1)

Traits

DCT1

An umbrella trait for algorithms which compute the Discrete Cosine Transform Type 1 (DCT1)