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:31:19 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2016-07-17 22:05:54 +0300
commitaa7e174891f9132279a74c6b6e0ca0f0f68520c1 (patch)
tree12e5c9736262a68816587387f28d141c1d6e01cd /silk/main.h
parent2955f68b14a1a8b8fb2be4af170ed621b8f73c9d (diff)
NLSF VQ now uses absolute error, and prediction
Diffstat (limited to 'silk/main.h')
-rw-r--r--silk/main.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/silk/main.h b/silk/main.h
index 60153359..910e5ddf 100644
--- a/silk/main.h
+++ b/silk/main.h
@@ -346,6 +346,7 @@ void silk_NLSF_VQ(
opus_int32 err_Q26[], /* O Quantization errors [K] */
const opus_int16 in_Q15[], /* I Input vectors to be quantized [LPC_order] */
const opus_uint8 pCB_Q8[], /* I Codebook vectors [K*LPC_order] */
+ const opus_int16 pWght_Q9[], /* I Codebook weights [K*LPC_order] */
const opus_int K, /* I Number of codebook vectors */
const opus_int LPC_order /* I Number of LPCs */
);