Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Jägenstedt <philip@foolip.org>2012-09-27 15:28:32 +0400
committerGregory Maxwell <greg@xiph.org>2012-09-27 17:16:30 +0400
commit6d9c16d142b88ac4d61e7d44c7a91751317671b3 (patch)
tree6ac201367edf4a0dbfd2ef0d84d4fd742ab357ff /silk/float/burg_modified_FLP.c
parente23b15f1eab965aa97329e25e7c016f6481a7241 (diff)
Fix common misspellings
I stumbled upon the typo in README.draft, so took the opportunity to grep for common misspellings using List_of_common_misspellings.txt for hunspell.
Diffstat (limited to 'silk/float/burg_modified_FLP.c')
-rw-r--r--silk/float/burg_modified_FLP.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/silk/float/burg_modified_FLP.c b/silk/float/burg_modified_FLP.c
index 0add3a65..31c9b228 100644
--- a/silk/float/burg_modified_FLP.c
+++ b/silk/float/burg_modified_FLP.c
@@ -40,7 +40,7 @@ silk_float silk_burg_modified_FLP( /* O returns residual energy
silk_float A[], /* O prediction coefficients (length order) */
const silk_float x[], /* I input signal, length: nb_subfr*(D+L_sub) */
const silk_float minInvGain, /* I minimum inverse prediction gain */
- const opus_int subfr_length, /* I input signal subframe length (incl. D preceeding samples) */
+ const opus_int subfr_length, /* I input signal subframe length (incl. D preceding samples) */
const opus_int nb_subfr, /* I number of subframes stacked in x */
const opus_int D /* I order */
)
@@ -162,7 +162,7 @@ silk_float silk_burg_modified_FLP( /* O returns residual energy
for( k = 0; k < D; k++ ) {
A[ k ] = (silk_float)( -Af[ k ] );
}
- /* Subtract energy of preceeding samples from C0 */
+ /* Subtract energy of preceding samples from C0 */
for( s = 0; s < nb_subfr; s++ ) {
C0 -= silk_energy_FLP( x + s * subfr_length, D );
}