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:
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 */
);
/****************************************************/