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
0de9d8ab
Commit
0de9d8ab
authored
17 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Making bits2pulses() use a fixed number of iterations to allow further
optimisations.
parent
a75e25da
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libcelt/rate.c
+5
-1
5 additions, 1 deletion
libcelt/rate.c
libcelt/rate.h
+1
-0
1 addition, 0 deletions
libcelt/rate.h
with
6 additions
and
1 deletion
libcelt/rate.c
+
5
−
1
View file @
0de9d8ab
...
...
@@ -154,11 +154,15 @@ void compute_alloc_cache(CELTMode *m)
static
int
bits2pulses
(
const
CELTMode
*
m
,
int
band
,
int
bits
)
{
int
i
;
int
lo
,
hi
;
lo
=
0
;
hi
=
MAX_PULSES
-
1
;
while
(
hi
-
lo
!=
1
)
/* Instead of using the "bisection confition" we use a fixed number of
iterations because it should be faster */
/*while (hi-lo != 1)*/
for
(
i
=
0
;
i
<
LOG_MAX_PULSES
;
i
++
)
{
int
mid
=
(
lo
+
hi
)
>>
1
;
if
(
m
->
bits
[
band
][
mid
]
>=
bits
)
...
...
This diff is collapsed.
Click to expand it.
libcelt/rate.h
+
1
−
0
View file @
0de9d8ab
...
...
@@ -33,6 +33,7 @@
#define RATE_H
#define MAX_PULSES 64
#define LOG_MAX_PULSES 6
/** Computes a cache of the pulses->bits mapping in each band */
void
compute_alloc_cache
(
CELTMode
*
m
);
...
...
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