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
Container Registry
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
Xiph.Org
Opus
Commits
950d8bf1
Unverified
Commit
950d8bf1
authored
1 year ago
by
Timothy B. Terriberry
Browse files
Options
Downloads
Patches
Plain Diff
Remove some dead code.
parent
9cf12e92
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!104
Add signaling for a maximum DRED quantizer.
,
!103
Add signaling for a maximum DRED quantizer.
,
!102
Add signaling for a maximum DRED quantizer.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
silk/dred_coding.c
+0
-2
0 additions, 2 deletions
silk/dred_coding.c
with
0 additions
and
2 deletions
silk/dred_coding.c
+
0
−
2
View file @
950d8bf1
...
...
@@ -39,8 +39,6 @@
int
compute_quantizer
(
int
q0
,
int
dQ
,
int
i
)
{
int
quant
;
static
const
int
dQ_table
[
8
]
=
{
0
,
2
,
3
,
4
,
6
,
8
,
12
,
16
};
quant
=
0
;
quant
=
q0
+
(
dQ_table
[
dQ
]
*
i
+
8
)
/
16
;
return
quant
>
15
?
15
:
quant
;
return
(
int
)
floor
(
0
.
5
f
+
DRED_ENC_Q0
+
1
.
f
*
(
DRED_ENC_Q1
-
DRED_ENC_Q0
)
*
i
/
(
DRED_NUM_REDUNDANCY_FRAMES
-
2
));
}
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