From 660f798d9a1fc6d5e40dc6e092875b3fbb3e8150 Mon Sep 17 00:00:00 2001 From: Alexis Maiquez Date: Sun, 7 May 2023 19:54:39 +0200 Subject: [PATCH] Move cstdint and cstdio for fft to the header file Signed-off-by: Alexis Maiquez --- src/External/Android/fft.cpp | 2 -- src/External/Android/fft.h | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/External/Android/fft.cpp b/src/External/Android/fft.cpp index 6406889..960bee7 100644 --- a/src/External/Android/fft.cpp +++ b/src/External/Android/fft.cpp @@ -26,8 +26,6 @@ namespace External::Android * half of the twiddle factors are stored. Although there are still ways to make * it even faster or smaller, it costs too much on one of the aspects. */ -#include -#include #ifdef __arm__ #include #endif diff --git a/src/External/Android/fft.h b/src/External/Android/fft.h index 0599173..dcc5281 100644 --- a/src/External/Android/fft.h +++ b/src/External/Android/fft.h @@ -1,6 +1,8 @@ #pragma once #include +#include +#include #define WAVE_BUFFER_SIZE 1024