summaryrefslogtreecommitdiffstats
path: root/FFT_Test/fft.hch
diff options
context:
space:
mode:
Diffstat (limited to 'FFT_Test/fft.hch')
-rw-r--r--FFT_Test/fft.hch8
1 files changed, 7 insertions, 1 deletions
diff --git a/FFT_Test/fft.hch b/FFT_Test/fft.hch
index 87d54e7..e44e32b 100644
--- a/FFT_Test/fft.hch
+++ b/FFT_Test/fft.hch
@@ -5,4 +5,10 @@ void perform_ifft(signed 18 *modified_audio ,unsigned 6 *ifft_info);
void perform_fft(signed 16 *pcm_audio);
void perform_ifft(signed 16 *modified_audio ,unsigned 6 *ifft_info);
#endif
-void equalize_audio(unsigned 4 *eq_level, unsigned 7 *fft_info);
+void equalize_audio(audiodata_t *audiodata);
+
+mpram DualPortRam
+{
+ ram signed 18 audio_io[256];
+ ram signed 18 fft[256];
+};