9 lines
156 B
C
9 lines
156 B
C
#pragma once
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
|
|
#define FFT_SIZE 2048
|
|
void init_hamming_window();
|
|
void compute_fft(float* time_data, float* freq_out);
|
|
|