Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-02-26 03:38:00 +0300
committerJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-02-26 04:21:58 +0300
commit2fa8affdc5134327592c473ce9f429f94cd403f5 (patch)
treea858d4f4e7b2604b6cc34b302d4d48531ffa2705 /libcelt/vq.h
parent9a5f3d2e6d6f9ca7278697180d18efdfd685913d (diff)
fixed-point: celt_norm_t now a 16-bit value.
Diffstat (limited to 'libcelt/vq.h')
-rw-r--r--libcelt/vq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcelt/vq.h b/libcelt/vq.h
index 284d74e..493ff8c 100644
--- a/libcelt/vq.h
+++ b/libcelt/vq.h
@@ -51,7 +51,7 @@
* @param alpha compression factor to apply in the pitch direction (magic!)
* @param enc Entropy encoder state
*/
-void alg_quant(celt_norm_t *x, float *W, int N, int K, celt_norm_t *p, float alpha, ec_enc *enc);
+void alg_quant(celt_norm_t *X, float *W, int N, int K, celt_norm_t *P, float alpha, ec_enc *enc);
/** Algebraic pulse decoder
* @param x Decoded normalised spectrum (returned)
@@ -61,7 +61,7 @@ void alg_quant(celt_norm_t *x, float *W, int N, int K, celt_norm_t *p, float alp
* @param alpha compression factor in the pitch direction (magic!)
* @param dec Entropy decoder state
*/
-void alg_unquant(celt_norm_t *x, int N, int K, celt_norm_t *p, float alpha, ec_dec *dec);
+void alg_unquant(celt_norm_t *X, int N, int K, celt_norm_t *P, float alpha, ec_dec *dec);
/** Intra-frame predictor that matches a section of the current frame (at lower
* frequencies) to encode the current band.