Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
97aec6e7
Commit
97aec6e7
authored
Jan 30, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fft: arm: Drop unnecessary #include, add missing ones
parent
73ff983e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
fft_init_aarch64.c
libavcodec/aarch64/fft_init_aarch64.c
+3
-0
fft_fixed_init_arm.c
libavcodec/arm/fft_fixed_init_arm.c
+2
-0
fft_init_arm.c
libavcodec/arm/fft_init_arm.c
+3
-1
No files found.
libavcodec/aarch64/fft_init_aarch64.c
View file @
97aec6e7
...
@@ -20,7 +20,10 @@
...
@@ -20,7 +20,10 @@
#include "config.h"
#include "config.h"
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
#include "libavutil/aarch64/cpu.h"
#include "libavutil/aarch64/cpu.h"
#include "libavcodec/fft.h"
#include "libavcodec/fft.h"
void
ff_fft_permute_neon
(
FFTContext
*
s
,
FFTComplex
*
z
);
void
ff_fft_permute_neon
(
FFTContext
*
s
,
FFTComplex
*
z
);
...
...
libavcodec/arm/fft_fixed_init_arm.c
View file @
97aec6e7
...
@@ -18,6 +18,8 @@
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
#include "libavutil/arm/cpu.h"
#include "libavutil/arm/cpu.h"
#define FFT_FLOAT 0
#define FFT_FLOAT 0
...
...
libavcodec/arm/fft_init_arm.c
View file @
97aec6e7
...
@@ -18,10 +18,12 @@
...
@@ -18,10 +18,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
#include "libavutil/arm/cpu.h"
#include "libavutil/arm/cpu.h"
#include "libavcodec/fft.h"
#include "libavcodec/fft.h"
#include "libavcodec/rdft.h"
#include "libavcodec/rdft.h"
#include "libavcodec/synth_filter.h"
void
ff_fft_calc_vfp
(
FFTContext
*
s
,
FFTComplex
*
z
);
void
ff_fft_calc_vfp
(
FFTContext
*
s
,
FFTComplex
*
z
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment