summaryrefslogtreecommitdiff
path: root/silk/main.h
diff options
context:
space:
mode:
authorKoen Vos <koenvos@users.noreply.github.com>2016-02-21 13:16:46 +0800
committerJean-Marc Valin <jmvalin@jmvalin.ca>2016-07-17 15:05:54 -0400
commit2955f68b14a1a8b8fb2be4af170ed621b8f73c9d (patch)
tree284bcf69de6f91ec7f30183095a26ff5113221ec /silk/main.h
parent7c645606c4825aae7754275a598bbd129a8c6374 (diff)
downloadopus-2955f68b14a1a8b8fb2be4af170ed621b8f73c9d.tar.gz
NLSF decoding now uses tables for NLSF weights
Diffstat (limited to 'silk/main.h')
-rw-r--r--silk/main.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/silk/main.h b/silk/main.h
index 2f90d68f..60153359 100644
--- a/silk/main.h
+++ b/silk/main.h
@@ -375,10 +375,11 @@ void silk_NLSF_unpack(
/***********************/
/* NLSF vector decoder */
/***********************/
-void silk_NLSF_decode(
+opus_int silk_NLSF_decode( /* O Number of bits (Q5), if signalType >= 0 */
opus_int16 *pNLSF_Q15, /* O Quantized NLSF vector [ LPC_ORDER ] */
opus_int8 *NLSFIndices, /* I Codebook path vector [ LPC_ORDER + 1 ] */
- const silk_NLSF_CB_struct *psNLSF_CB /* I Codebook object */
+ const silk_NLSF_CB_struct *psNLSF_CB, /* I Codebook object */
+ const opus_int signalType /* I SignalType, to determine number of bits */
);
/****************************************************/