Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-01-30 16:54:35 +0300
committerDiego Biurrun <diego@biurrun.de>2016-02-26 16:34:58 +0300
commit97aec6e75ef36ed0402653519daa8e1fc8ddb555 (patch)
tree9705d6d6c53acaf5df03fe0552e17990e3db57df /libavcodec/aarch64
parent73ff983e8dd22ccee166403d0bbbc9c1cd543622 (diff)
fft: arm: Drop unnecessary #include, add missing ones
Diffstat (limited to 'libavcodec/aarch64')
-rw-r--r--libavcodec/aarch64/fft_init_aarch64.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/aarch64/fft_init_aarch64.c b/libavcodec/aarch64/fft_init_aarch64.c
index 589e82d331..f85091e676 100644
--- a/libavcodec/aarch64/fft_init_aarch64.c
+++ b/libavcodec/aarch64/fft_init_aarch64.c
@@ -20,7 +20,10 @@
#include "config.h"
+#include "libavutil/attributes.h"
+#include "libavutil/cpu.h"
#include "libavutil/aarch64/cpu.h"
+
#include "libavcodec/fft.h"
void ff_fft_permute_neon(FFTContext *s, FFTComplex *z);