]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Remove more set, but unused variables in the ilbc codec
authorKinsey Moore <kmoore@digium.com>
Fri, 20 Jan 2012 16:31:40 +0000 (16:31 +0000)
committerKinsey Moore <kmoore@digium.com>
Fri, 20 Jan 2012 16:31:40 +0000 (16:31 +0000)
GCC 4.6.3 caught these in dev mode as well.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@351816 65c4cc65-6c06-0410-ace0-fbb531ad65f3

codecs/ilbc/LPCencode.c
codecs/ilbc/iLBC_decode.c

index 19695c0fa552eece2761a4d9edd8b37abe10bd9f..8e83dab78b4ad26e7d30be7f4fa7f2a5bfdb52c5 100644 (file)
    ){
        float lsf[LPC_FILTERORDER * LPC_N_MAX];
        float lsfdeq[LPC_FILTERORDER * LPC_N_MAX];
-       int change=0;
 
        SimpleAnalysis(lsf, data, iLBCenc_inst);
        SimplelsfQ(lsfdeq, lsf_index, lsf, iLBCenc_inst->lpc_n);
 
 
 
-       change=LSF_check(lsfdeq, LPC_FILTERORDER, iLBCenc_inst->lpc_n);
        SimpleInterpolateLSF(syntdenum, weightdenum,
            lsf, lsfdeq, iLBCenc_inst->lsfold,
            iLBCenc_inst->lsfdeqold, LPC_FILTERORDER, iLBCenc_inst);
index ae62bf44080c8ce42facf9bbf571d9b7a1fdd4b1..d84ccb8df360f59a3a004283cd40f61f1a67d62b 100644 (file)
        int lag, ilag;
        float cc, maxcc;
        int idxVec[STATE_LEN];
-       int check;
        int gain_index[NASUB_MAX*CB_NSTAGES],
            extra_gain_index[CB_NSTAGES];
        int cb_index[CB_NSTAGES*NASUB_MAX], extra_cb_index[CB_NSTAGES];
                /* decode the lsf */
 
                SimplelsfDEQ(lsfdeq, lsf_i, iLBCdec_inst->lpc_n);
-               check=LSF_check(lsfdeq, LPC_FILTERORDER,
-                   iLBCdec_inst->lpc_n);
                DecoderInterpolateLSF(syntdenum, weightdenum,
                    lsfdeq, LPC_FILTERORDER, iLBCdec_inst);