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-13 08:00:10 +0300
committerJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-02-13 08:00:10 +0300
commit0df0eb4c67443e0434368ddc9a979bce626b5ab7 (patch)
tree4f8197a82766088e8e1b455aa471cf97abfa76a7 /libcelt/vq.h
parent1b074d6600d0eae3c44abdd354e4059ba36d7f1f (diff)
doing the folding properly.
Diffstat (limited to 'libcelt/vq.h')
-rw-r--r--libcelt/vq.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libcelt/vq.h b/libcelt/vq.h
index 29751a5..8ca25f8 100644
--- a/libcelt/vq.h
+++ b/libcelt/vq.h
@@ -75,6 +75,7 @@ void intra_prediction(float *x, float *W, int N, int K, float *Y, float *P, int
void intra_unquant(float *x, int N, int K, float *Y, float *P, int B, int N0, ec_dec *dec);
-void intra_fold(float *x, int N, int K, float *Y, float *P, int B, int N0);
+/** Encode the entire band as a "fold" from other parts of the spectrum. No bits required (only use is case of an emergency!) */
+void intra_fold(float *x, int N, float *Y, float *P, int B, int N0, int Nmax);
#endif /* VQ_H */