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
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Marcus Asteborg
Opus
Commits
f2b86588
Commit
f2b86588
authored
14 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
fixes error in definition of V(N,K)
parent
fc7d19ea
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
doc/draft-ietf-codec-opus.xml
+1
-1
1 addition, 1 deletion
doc/draft-ietf-codec-opus.xml
with
1 addition
and
1 deletion
doc/draft-ietf-codec-opus.xml
+
1
−
1
View file @
f2b86588
...
@@ -731,7 +731,7 @@ The codeword is converted from a unique index in the same way as specified in
...
@@ -731,7 +731,7 @@ The codeword is converted from a unique index in the same way as specified in
(denoted N(L,K) in
<xref
target=
"PVQ"
></xref>
), which is the number of possible
(denoted N(L,K) in
<xref
target=
"PVQ"
></xref>
), which is the number of possible
combinations of K pulses
combinations of K pulses
in N samples. The number of combinations can be computed recursively as
in N samples. The number of combinations can be computed recursively as
V(N,K) = V(N
+
1,K) + V(N,K
+
1) + V(N
+
1,K
+
1), with V(N,0) = 1 and V(0,K) = 0, K != 0.
V(N,K) = V(N
-
1,K) + V(N,K
-
1) + V(N
-
1,K
-
1), with V(N,0) = 1 and V(0,K) = 0, K != 0.
There are many different ways to compute V(N,K), including pre-computed tables and direct
There are many different ways to compute V(N,K), including pre-computed tables and direct
use of the recursive formulation. The reference implementation applies the recursive
use of the recursive formulation. The reference implementation applies the recursive
formulation one line (or column) at a time to save on memory use,
formulation one line (or column) at a time to save on memory use,
...
...
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