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:
authorKoen Vos <koenvos@users.noreply.github.com>2016-02-21 08:16:46 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2016-07-17 22:05:54 +0300
commit2955f68b14a1a8b8fb2be4af170ed621b8f73c9d (patch)
tree284bcf69de6f91ec7f30183095a26ff5113221ec /silk/decode_parameters.c
parent7c645606c4825aae7754275a598bbd129a8c6374 (diff)
NLSF decoding now uses tables for NLSF weights
Diffstat (limited to 'silk/decode_parameters.c')
-rw-r--r--silk/decode_parameters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/silk/decode_parameters.c b/silk/decode_parameters.c
index e345b1dc..07d6d6f4 100644
--- a/silk/decode_parameters.c
+++ b/silk/decode_parameters.c
@@ -49,7 +49,7 @@ void silk_decode_parameters(
/****************/
/* Decode NLSFs */
/****************/
- silk_NLSF_decode( pNLSF_Q15, psDec->indices.NLSFIndices, psDec->psNLSF_CB );
+ silk_NLSF_decode( pNLSF_Q15, psDec->indices.NLSFIndices, psDec->psNLSF_CB, -1 );
/* Convert NLSF parameters to AR prediction filter coefficients */
silk_NLSF2A( psDecCtrl->PredCoef_Q12[ 1 ], pNLSF_Q15, psDec->LPC_order );