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
dcd580d7
Commit
dcd580d7
authored
15 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Disabling K>128 until it can be shown to be useful.
parent
445720f9
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/rate.h
+4
-1
4 additions, 1 deletion
libcelt/rate.h
with
4 additions
and
1 deletion
libcelt/rate.h
+
4
−
1
View file @
dcd580d7
...
...
@@ -48,6 +48,7 @@ static inline int bits2pulses(const CELTMode *m, const celt_int16_t *cache, int
lo
=
0
;
hi
=
MAX_PULSES
-
1
;
#if 0 /* Disabled until we can make that useful */
/* Use of more than MAX_PULSES is disabled until we are able to cwrs that decently */
if (bits > cache[MAX_PULSES-1] && N<=4)
{
...
...
@@ -83,6 +84,7 @@ static inline int bits2pulses(const CELTMode *m, const celt_int16_t *cache, int
}
return lo;
}
#endif
/* Instead of using the "bisection condition" we use a fixed number of
iterations because it should be faster */
/*while (hi-lo != 1)*/
...
...
@@ -104,7 +106,7 @@ static inline int bits2pulses(const CELTMode *m, const celt_int16_t *cache, int
static
inline
int
pulses2bits
(
const
celt_int16_t
*
cache
,
int
N
,
int
pulses
)
{
/* Use of more than MAX_PULSES is disabled until we are able to cwrs that decently */
#if 0
/* Use of more than MAX_PULSES is disabled until we are able to cwrs that decently */
if (pulses > 127)
{
int bits;
...
...
@@ -120,6 +122,7 @@ static inline int pulses2bits(const celt_int16_t *cache, int N, int pulses)
/*printf ("%d <- %d\n", bits, pulses);*/
return bits;
}
#endif
return
cache
[
pulses
];
}
...
...
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