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
094d4d86
Commit
094d4d86
authored
Aug 26, 2017
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/sinewin_tablegen: Fix compilation with --enable-hardcoded-tables.
Reported by irc user JCount_.
parent
1c56becb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
sinewin_tablegen.h
libavcodec/sinewin_tablegen.h
+4
-3
No files found.
libavcodec/sinewin_tablegen.h
View file @
094d4d86
...
...
@@ -31,14 +31,16 @@
#include "libavutil/attributes.h"
#include "libavutil/common.h"
#if !USE_FIXED
SINETABLE
(
120
);
SINETABLE
(
960
);
#endif
#if !CONFIG_HARDCODED_TABLES
SINETABLE
(
32
);
SINETABLE
(
64
);
SINETABLE
(
120
);
SINETABLE
(
128
);
SINETABLE
(
256
);
SINETABLE
(
512
);
SINETABLE
(
960
);
SINETABLE
(
1024
);
SINETABLE
(
2048
);
SINETABLE
(
4096
);
...
...
@@ -62,7 +64,6 @@ SINETABLE_CONST INTFLOAT * const AAC_RENAME(ff_sine_windows)[] = {
AAC_RENAME
(
ff_sine_32
)
,
AAC_RENAME
(
ff_sine_64
),
AAC_RENAME
(
ff_sine_128
),
AAC_RENAME
(
ff_sine_256
),
AAC_RENAME
(
ff_sine_512
),
AAC_RENAME
(
ff_sine_1024
),
AAC_RENAME
(
ff_sine_2048
),
AAC_RENAME
(
ff_sine_4096
),
AAC_RENAME
(
ff_sine_8192
),
AAC_RENAME
(
ff_sine_120
),
AAC_RENAME
(
ff_sine_960
),
};
// Generate a sine window.
...
...
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