Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexander Traud
Opus
Commits
f3190f26
Commit
f3190f26
authored
16 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
s/unsigned/celt_uint32_t/
parent
82595311
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libcelt/cwrs.c
+2
-2
2 additions, 2 deletions
libcelt/cwrs.c
with
2 additions
and
2 deletions
libcelt/cwrs.c
+
2
−
2
View file @
f3190f26
...
...
@@ -95,7 +95,7 @@ int fits_in32(int _n, int _m)
#define MASK32 (0xFFFFFFFF)
/*INV_TABLE[i] holds the multiplicative inverse of (2*i-1) mod 2**32.*/
static
const
unsigned
INV_TABLE
[
128
]
=
{
static
const
celt_uint32_t
INV_TABLE
[
128
]
=
{
0x00000001
,
0xAAAAAAAB
,
0xCCCCCCCD
,
0xB6DB6DB7
,
0x38E38E39
,
0xBA2E8BA3
,
0xC4EC4EC5
,
0xEEEEEEEF
,
0xF0F0F0F1
,
0x286BCA1B
,
0x3CF3CF3D
,
0xE9BD37A7
,
...
...
@@ -148,7 +148,7 @@ static inline celt_uint32_t imusdiv32odd(celt_uint32_t _a,celt_uint32_t _b,
32 bits.*/
static
inline
celt_uint32_t
imusdiv32even
(
celt_uint32_t
_a
,
celt_uint32_t
_b
,
celt_uint32_t
_c
,
celt_uint32_t
_d
){
unsigned
inv
;
celt_uint32_t
inv
;
int
mask
;
int
shift
;
int
one
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment