summaryrefslogtreecommitdiff
path: root/third_party/ilbc/helpfun.c
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2014-02-04 10:13:56 +0000
committerBenny Prijono <bennylp@teluu.com>2014-02-04 10:13:56 +0000
commit0c03f9d1a434ca591f40980eff388daff653ce0d (patch)
tree00bd27f374d46c7825a372e7892de140c1a9e5e4 /third_party/ilbc/helpfun.c
parent1342a94d5cbd8820f83ef59adcb18d14f566a3de (diff)
Misc (re #1630): Fixing warnings about variable set but not used with recent gcc
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4728 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'third_party/ilbc/helpfun.c')
-rw-r--r--third_party/ilbc/helpfun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/ilbc/helpfun.c b/third_party/ilbc/helpfun.c
index 1aba6578..2406c131 100644
--- a/third_party/ilbc/helpfun.c
+++ b/third_party/ilbc/helpfun.c
@@ -277,7 +277,7 @@
table */
){
int k,n,m, Nit=2, change=0,pos;
- float tmp;
+ //float tmp;
static float eps=(float)0.039; /* 50 Hz */
static float eps2=(float)0.0195;
static float maxlsf=(float)3.14; /* 4000 Hz */
@@ -293,7 +293,7 @@
if ((lsf[pos+1]-lsf[pos])<eps) {
if (lsf[pos+1]<lsf[pos]) {
- tmp=lsf[pos+1];
+ //tmp=lsf[pos+1];
lsf[pos+1]= lsf[pos]+eps2;
lsf[pos]= lsf[pos+1]-eps2;
} else {