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
7640c4a3
Commit
7640c4a3
authored
Jan 22, 2015
by
Niel van der Westhuizen
Committed by
Alex Converse
Feb 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aacdec: Tables for length 480 AAC ELD.
parent
0ee25733
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
499 additions
and
3 deletions
+499
-3
aacdec.c
libavcodec/aacdec.c
+1
-1
aactab.c
libavcodec/aactab.c
+493
-1
aactab.h
libavcodec/aactab.h
+5
-1
No files found.
libavcodec/aacdec.c
View file @
7640c4a3
...
...
@@ -2457,7 +2457,7 @@ static void imdct_and_windowing_eld(AACContext *ac, SingleChannelElement *sce)
float
*
in
=
sce
->
coeffs
;
float
*
out
=
sce
->
ret
;
float
*
saved
=
sce
->
saved
;
const
float
*
const
window
=
ff_aac_eld_window
;
const
float
*
const
window
=
ff_aac_eld_window
_512
;
float
*
buf
=
ac
->
buf_mdct
;
int
i
;
const
int
n
=
512
;
...
...
libavcodec/aactab.c
View file @
7640c4a3
This diff is collapsed.
Click to expand it.
libavcodec/aactab.h
View file @
7640c4a3
...
...
@@ -46,7 +46,8 @@
*/
DECLARE_ALIGNED
(
32
,
extern
float
,
ff_aac_kbd_long_1024
)[
1024
];
DECLARE_ALIGNED
(
32
,
extern
float
,
ff_aac_kbd_short_128
)[
128
];
const
DECLARE_ALIGNED
(
32
,
extern
float
,
ff_aac_eld_window
)[
1920
];
const
DECLARE_ALIGNED
(
32
,
extern
float
,
ff_aac_eld_window_512
)[
1920
];
const
DECLARE_ALIGNED
(
32
,
extern
float
,
ff_aac_eld_window_480
)[
1800
];
// @}
/* @name number of scalefactor window bands for long and short transform windows respectively
...
...
@@ -54,6 +55,7 @@ const DECLARE_ALIGNED(32, extern float, ff_aac_eld_window)[1920];
*/
extern
const
uint8_t
ff_aac_num_swb_1024
[];
extern
const
uint8_t
ff_aac_num_swb_512
[];
extern
const
uint8_t
ff_aac_num_swb_480
[];
extern
const
uint8_t
ff_aac_num_swb_128
[];
// @}
...
...
@@ -72,10 +74,12 @@ extern const uint16_t *ff_aac_codebook_vector_idx[];
extern
const
uint16_t
*
const
ff_swb_offset_1024
[
13
];
extern
const
uint16_t
*
const
ff_swb_offset_512
[
13
];
extern
const
uint16_t
*
const
ff_swb_offset_480
[
13
];
extern
const
uint16_t
*
const
ff_swb_offset_128
[
13
];
extern
const
uint8_t
ff_tns_max_bands_1024
[
13
];
extern
const
uint8_t
ff_tns_max_bands_512
[
13
];
extern
const
uint8_t
ff_tns_max_bands_480
[
13
];
extern
const
uint8_t
ff_tns_max_bands_128
[
13
];
#endif
/* AVCODEC_AACTAB_H */
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