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
1597dba8
Commit
1597dba8
authored
Aug 22, 2015
by
Timothy Gu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aacdec_fixed: Make exp2tab static const
parent
8d9fe002
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
aacdec_fixed.c
libavcodec/aacdec_fixed.c
+1
-1
No files found.
libavcodec/aacdec_fixed.c
View file @
1597dba8
...
...
@@ -101,7 +101,7 @@ static av_always_inline void reset_predict_state(PredictorState *ps)
ps
->
var1
.
exp
=
1
;
}
int
exp2tab
[
4
]
=
{
Q31
(
1
.
0000000000
/
2
),
Q31
(
1
.
1892071150
/
2
),
Q31
(
1
.
4142135624
/
2
),
Q31
(
1
.
6817928305
/
2
)
};
// 2^0, 2^0.25, 2^0.5, 2^0.75
static
const
int
exp2tab
[
4
]
=
{
Q31
(
1
.
0000000000
/
2
),
Q31
(
1
.
1892071150
/
2
),
Q31
(
1
.
4142135624
/
2
),
Q31
(
1
.
6817928305
/
2
)
};
// 2^0, 2^0.25, 2^0.5, 2^0.75
static
inline
int
*
DEC_SPAIR
(
int
*
dst
,
unsigned
idx
)
{
...
...
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