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
c7f4d983
Commit
c7f4d983
authored
Aug 18, 2008
by
Robert Swain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More OKed AAC decoder code hunks
Originally committed as revision 14828 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
e48891bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
aac.h
libavcodec/aac.h
+8
-0
aacdectab.h
libavcodec/aacdectab.h
+15
-0
No files found.
libavcodec/aac.h
View file @
c7f4d983
...
@@ -231,6 +231,14 @@ typedef struct {
...
@@ -231,6 +231,14 @@ typedef struct {
ChannelElement
*
che
[
4
][
MAX_ELEM_ID
];
ChannelElement
*
che
[
4
][
MAX_ELEM_ID
];
/** @} */
/** @} */
/**
* @defgroup temporary aligned temporary buffers (We do not want to have these on the stack.)
* @{
*/
DECLARE_ALIGNED_16
(
float
,
buf_mdct
[
2048
]);
DECLARE_ALIGNED_16
(
float
,
revers
[
1024
]);
/** @} */
/**
/**
* @defgroup tables Computed / set up during initialization.
* @defgroup tables Computed / set up during initialization.
* @{
* @{
...
...
libavcodec/aacdectab.h
View file @
c7f4d983
...
@@ -156,4 +156,19 @@ static const uint16_t *swb_offset_128[] = {
...
@@ -156,4 +156,19 @@ static const uint16_t *swb_offset_128[] = {
// @}
// @}
/* @name tns_max_bands
* The maximum number of scalefactor bands on which TNS can operate for the long
* and short transforms respectively. The index to these tables is related to
* the sample rate of the audio.
* @{
*/
static
const
uint8_t
tns_max_bands_1024
[]
=
{
31
,
31
,
34
,
40
,
42
,
51
,
46
,
46
,
42
,
42
,
42
,
39
};
static
const
uint8_t
tns_max_bands_128
[]
=
{
9
,
9
,
10
,
14
,
14
,
14
,
14
,
14
,
14
,
14
,
14
,
14
};
// @}
#endif
/* FFMPEG_AACDECTAB_H */
#endif
/* FFMPEG_AACDECTAB_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