|
|
|
@ -16,10 +16,6 @@ extern "C" { |
|
|
|
|
#include "fft.h" |
|
|
|
|
#include "window.h" |
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus |
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
typedef struct |
|
|
|
|
{ |
|
|
|
|
pthread_t thread; |
|
|
|
@ -29,9 +25,6 @@ int i_channels; |
|
|
|
|
int i_prev_nb_samples; |
|
|
|
|
int16_t *p_prev_s16_buff; |
|
|
|
|
|
|
|
|
|
float f_rotationAngle; |
|
|
|
|
float f_rotationIncrement; |
|
|
|
|
|
|
|
|
|
/* FFT window parameters */ |
|
|
|
|
window_param wind_param; |
|
|
|
|
|
|
|
|
@ -58,4 +51,8 @@ void release_visualizer(filter_sys_t *p_sys); |
|
|
|
|
|
|
|
|
|
int ensure_memory(filter_sys_t *fft_filter, int nb_samples); |
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus |
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#endif //EXECUTE_FFT_H
|
|
|
|
|