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
d6cad7aa
Commit
d6cad7aa
authored
13 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Disabling some unused SILK functions from the float build
parent
8fcfe02b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
silk/LPC_inv_pred_gain.c
+4
-1
4 additions, 1 deletion
silk/LPC_inv_pred_gain.c
silk/sort.c
+3
-0
3 additions, 0 deletions
silk/sort.c
with
7 additions
and
1 deletion
silk/LPC_inv_pred_gain.c
+
4
−
1
View file @
d6cad7aa
...
...
@@ -132,7 +132,10 @@ opus_int silk_LPC_inverse_pred_gain( /* O Returns 1 if unstable
return
LPC_inverse_pred_gain_QA
(
invGain_Q30
,
Atmp_QA
,
order
);
}
#ifdef FIXED_POINT
/* For input in Q24 domain */
/* This function is only used by the fixed-point build */
opus_int
silk_LPC_inverse_pred_gain_Q24
(
/* O Returns 1 if unstable, otherwise 0 */
opus_int32
*
invGain_Q30
,
/* O Inverse prediction gain, Q30 energy domain */
const
opus_int32
*
A_Q24
,
/* I Prediction coefficients, Q24 [order] */
...
...
@@ -152,4 +155,4 @@ opus_int silk_LPC_inverse_pred_gain_Q24( /* O Returns 1 if unstabl
return
LPC_inverse_pred_gain_QA
(
invGain_Q30
,
Atmp_QA
,
order
);
}
#endif
This diff is collapsed.
Click to expand it.
silk/sort.c
+
3
−
0
View file @
d6cad7aa
...
...
@@ -83,6 +83,8 @@ void silk_insertion_sort_increasing(
}
}
#ifdef FIXED_POINT
/* This function is only used by the fixed-point build */
void
silk_insertion_sort_decreasing_int16
(
opus_int16
*
a
,
/* I/O Unsorted / Sorted vector */
opus_int
*
idx
,
/* O Index vector for the sorted elements */
...
...
@@ -128,6 +130,7 @@ void silk_insertion_sort_decreasing_int16(
}
}
}
#endif
void
silk_insertion_sort_increasing_all_values_int16
(
opus_int16
*
a
,
/* I/O Unsorted / Sorted vector */
...
...
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