summaryrefslogtreecommitdiff
path: root/silk/main.h
diff options
context:
space:
mode:
authorKoen Vos <koenvos@users.noreply.github.com>2016-02-21 14:27:11 +0800
committerJean-Marc Valin <jmvalin@jmvalin.ca>2016-07-17 15:05:54 -0400
commit8daa4d373948aadbd155f03b3dbc2ce658dfac12 (patch)
tree5dd5facce7a74a84a13e9f24453008de90e55f00 /silk/main.h
parenteb2c8f38e6ddaf238d07c090131c47c5f23eacfc (diff)
downloadopus-8daa4d373948aadbd155f03b3dbc2ce658dfac12.tar.gz
take advantage of more efficient NLSF quantization by reducing number of survivors in search
JMV: edited to be a little more conservative
Diffstat (limited to 'silk/main.h')
-rw-r--r--silk/main.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/silk/main.h b/silk/main.h
index 910e5ddf..c6d2b9e7 100644
--- a/silk/main.h
+++ b/silk/main.h
@@ -376,11 +376,10 @@ void silk_NLSF_unpack(
/***********************/
/* NLSF vector decoder */
/***********************/
-opus_int silk_NLSF_decode( /* O Number of bits (Q5), if signalType >= 0 */
+void silk_NLSF_decode(
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 opus_int signalType /* I SignalType, to determine number of bits */
+ const silk_NLSF_CB_struct *psNLSF_CB /* I Codebook object */
);
/****************************************************/