OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Fft
(Results
1 - 2
of
2
) sorted by null
/cts/apps/CtsVerifier/jni/audioquality/
Fft.h
20
class
Fft
{
22
Fft
(void);
24
virtual ~
Fft
(void);
26
// Prepare for radix-2
FFT
's of size (1<<pow2)
29
// Forward
fft
. Real time-domain components in x, imaginary in y
30
void
fft
(float *x, float *y);
32
// Inverse
fft
. Real frequency-domain components in x, imaginary in y
56
// Create the sine/cosine basis tables and return the size of the
FFT
Fft.cpp
17
#include "
Fft
.h"
22
Fft
::
Fft
(void) : mCosine(0), mSine(0), mFftSize(0), mFftTableSize(0) { }
24
Fft
::~
Fft
(void) {
28
/* Construct a
FFT
table suitable to perform a DFT of size 2^power. */
29
void
Fft
::fftInit(int power) {
34
void
Fft
::fftCleanup() {
44
int
Fft
::fftLogMag(float *x, float *y, float *z, int n) {
60
int
Fft
::fftMakeTable(int pow2)
85
void Fft::
fft
( float *x, float *y ) {
function in class:Fft
[
all
...]
Completed in 49 milliseconds