10 lines
270 B
C
10 lines
270 B
C
|
#ifndef _DFT8TURBO_H
|
||
|
#define _DFT8TURBO_H
|
||
|
|
||
|
/* Note: Frequencies must be precompiled. */
|
||
|
|
||
|
void DoDFT8BitTurbo( float * outbins, float * frequencies, int bins, const float * databuffer, int place_in_data_buffer, int size_of_data_buffer, float q, float speedup );
|
||
|
|
||
|
#endif
|
||
|
|