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
572d65df
Verified
Commit
572d65df
authored
8 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Remove silk_LPC_inverse_pred_gain_Q24() which is no longer used anywhere
parent
c5a84df8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
silk/LPC_inv_pred_gain.c
+0
-20
0 additions, 20 deletions
silk/LPC_inv_pred_gain.c
silk/SigProc_FIX.h
+0
-6
0 additions, 6 deletions
silk/SigProc_FIX.h
with
0 additions
and
26 deletions
silk/LPC_inv_pred_gain.c
+
0
−
20
View file @
572d65df
...
@@ -139,23 +139,3 @@ opus_int32 silk_LPC_inverse_pred_gain( /* O Returns inverse predi
...
@@ -139,23 +139,3 @@ opus_int32 silk_LPC_inverse_pred_gain( /* O Returns inverse predi
}
}
return
LPC_inverse_pred_gain_QA
(
Atmp_QA
,
order
);
return
LPC_inverse_pred_gain_QA
(
Atmp_QA
,
order
);
}
}
#ifdef FIXED_POINT
/* For input in Q24 domain */
opus_int32
silk_LPC_inverse_pred_gain_Q24
(
/* O Returns inverse prediction gain in energy domain, Q30 */
const
opus_int32
*
A_Q24
,
/* I Prediction coefficients [order] */
const
opus_int
order
/* I Prediction order */
)
{
opus_int
k
;
opus_int32
Atmp_QA
[
SILK_MAX_ORDER_LPC
];
/* Increase Q domain of the AR coefficients */
for
(
k
=
0
;
k
<
order
;
k
++
)
{
Atmp_QA
[
k
]
=
silk_RSHIFT32
(
A_Q24
[
k
],
24
-
QA
);
}
return
LPC_inverse_pred_gain_QA
(
Atmp_QA
,
order
);
}
#endif
This diff is collapsed.
Click to expand it.
silk/SigProc_FIX.h
+
0
−
6
View file @
572d65df
...
@@ -137,12 +137,6 @@ opus_int32 silk_LPC_inverse_pred_gain( /* O Returns inverse predi
...
@@ -137,12 +137,6 @@ opus_int32 silk_LPC_inverse_pred_gain( /* O Returns inverse predi
const
opus_int
order
/* I Prediction order */
const
opus_int
order
/* I Prediction order */
);
);
/* For input in Q24 domain */
opus_int32
silk_LPC_inverse_pred_gain_Q24
(
/* O Returns inverse prediction gain in energy domain, Q30 */
const
opus_int32
*
A_Q24
,
/* I Prediction coefficients [order] */
const
opus_int
order
/* I Prediction order */
);
/* Split signal in two decimated bands using first-order allpass filters */
/* Split signal in two decimated bands using first-order allpass filters */
void
silk_ana_filt_bank_1
(
void
silk_ana_filt_bank_1
(
const
opus_int16
*
in
,
/* I Input signal [N] */
const
opus_int16
*
in
,
/* I Input signal [N] */
...
...
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