aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/ilbc/LPCencode.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-14 05:45:34 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-14 05:45:34 +0000
commit84d406a5c7c5e5e0dbc8dd5876b54b89670a8426 (patch)
tree2596e5f7bae7231fbbfff15715243cab6217f1b1 /codecs/ilbc/LPCencode.c
parent40915adff75f3626e0f849714737b52dc2cc7f68 (diff)
Fix iLBC compiler warnings
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4002 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs/ilbc/LPCencode.c')
-rwxr-xr-xcodecs/ilbc/LPCencode.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/codecs/ilbc/LPCencode.c b/codecs/ilbc/LPCencode.c
index 920859a0e..4d5fcff21 100755
--- a/codecs/ilbc/LPCencode.c
+++ b/codecs/ilbc/LPCencode.c
@@ -15,6 +15,7 @@
#include "iLBC_define.h"
+#include "LPCencode.h"
#include "helpfun.h"
#include "lsf.h"
#include "constants.h"
@@ -23,7 +24,7 @@
* lpc analysis (subrutine to LPCencode)
*---------------------------------------------------------------*/
-void SimpleAnalysis(
+static void SimpleAnalysis(
float *lsf, /* (o) lsf coefficients */
float *data, /* (i) new data vector */
iLBC_Enc_Inst_t *iLBCenc_inst
@@ -73,7 +74,7 @@ void SimpleAnalysis(
* (subrutine to SimpleInterpolateLSF)
*---------------------------------------------------------------*/
-void LSFinterpolate2a_enc(
+static void LSFinterpolate2a_enc(
float *a, /* (o) lpc coefficients */
float *lsf1,/* (i) first set of lsf coefficients */
float *lsf2,/* (i) second set of lsf coefficients */
@@ -91,7 +92,7 @@ void LSFinterpolate2a_enc(
* lsf interpolator (subrutine to LPCencode)
*---------------------------------------------------------------*/
-void SimpleInterpolateLSF(
+static void SimpleInterpolateLSF(
float *syntdenum, /* (o) the synthesis filter denominator
resulting from the quantized
interpolated lsf */
@@ -174,7 +175,7 @@ void SimpleInterpolateLSF(
* lsf quantizer (subrutine to LPCencode)
*---------------------------------------------------------------*/
-void SimplelsfQ(
+static void SimplelsfQ(
float *lsfdeq, /* (o) dequantized lsf coefficients
(dimension FILTERORDER) */
int *index, /* (o) quantization index */