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
24af1aa0
Commit
24af1aa0
authored
Feb 18, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fft: Convert FFT/MDCT permutation type #defines to enums
parent
746ad4e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
fft.h
libavcodec/fft.h
+13
-7
No files found.
libavcodec/fft.h
View file @
24af1aa0
...
@@ -59,6 +59,17 @@ typedef struct FFTDComplex {
...
@@ -59,6 +59,17 @@ typedef struct FFTDComplex {
/* FFT computation */
/* FFT computation */
enum
fft_permutation_type
{
FF_FFT_PERM_DEFAULT
,
FF_FFT_PERM_SWAP_LSBS
,
FF_FFT_PERM_AVX
,
};
enum
mdct_permutation_type
{
FF_MDCT_PERM_NONE
,
FF_MDCT_PERM_INTERLEAVE
,
};
struct
FFTContext
{
struct
FFTContext
{
int
nbits
;
int
nbits
;
int
inverse
;
int
inverse
;
...
@@ -82,13 +93,8 @@ struct FFTContext {
...
@@ -82,13 +93,8 @@ struct FFTContext {
void
(
*
imdct_half
)(
struct
FFTContext
*
s
,
FFTSample
*
output
,
const
FFTSample
*
input
);
void
(
*
imdct_half
)(
struct
FFTContext
*
s
,
FFTSample
*
output
,
const
FFTSample
*
input
);
void
(
*
mdct_calc
)(
struct
FFTContext
*
s
,
FFTSample
*
output
,
const
FFTSample
*
input
);
void
(
*
mdct_calc
)(
struct
FFTContext
*
s
,
FFTSample
*
output
,
const
FFTSample
*
input
);
void
(
*
mdct_calcw
)(
struct
FFTContext
*
s
,
FFTDouble
*
output
,
const
FFTSample
*
input
);
void
(
*
mdct_calcw
)(
struct
FFTContext
*
s
,
FFTDouble
*
output
,
const
FFTSample
*
input
);
int
fft_permutation
;
enum
fft_permutation_type
fft_permutation
;
#define FF_FFT_PERM_DEFAULT 0
enum
mdct_permutation_type
mdct_permutation
;
#define FF_FFT_PERM_SWAP_LSBS 1
#define FF_FFT_PERM_AVX 2
int
mdct_permutation
;
#define FF_MDCT_PERM_NONE 0
#define FF_MDCT_PERM_INTERLEAVE 1
};
};
#if CONFIG_HARDCODED_TABLES
#if CONFIG_HARDCODED_TABLES
...
...
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