diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-01-30 14:54:35 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-02-26 14:34:58 +0100 |
commit | 97aec6e75ef36ed0402653519daa8e1fc8ddb555 (patch) | |
tree | 9705d6d6c53acaf5df03fe0552e17990e3db57df /libavcodec/aarch64 | |
parent | 73ff983e8dd22ccee166403d0bbbc9c1cd543622 (diff) | |
download | ffmpeg-97aec6e75ef36ed0402653519daa8e1fc8ddb555.tar.gz |
fft: arm: Drop unnecessary #include, add missing ones
Diffstat (limited to 'libavcodec/aarch64')
-rw-r--r-- | libavcodec/aarch64/fft_init_aarch64.c | 3 |
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); |