summaryrefslogtreecommitdiff
path: root/vq/vqgen.h
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>1999-12-16 09:24:54 +0000
committerMonty <xiphmont@xiph.org>1999-12-16 09:24:54 +0000
commitc6195c0098ecca45c52afab2874b4265df0399ce (patch)
tree1ac78227dfb614a5672e933ff47d3ebe9da58a02 /vq/vqgen.h
parent450addf448f772dad4138742e401725c2d84b879 (diff)
downloadlibvorbis-git-c6195c0098ecca45c52afab2874b4265df0399ce.tar.gz
Incremental update
svn path=/trunk/vorbis/; revision=198
Diffstat (limited to 'vq/vqgen.h')
-rw-r--r--vq/vqgen.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/vq/vqgen.h b/vq/vqgen.h
index 6fcc54d2..3c207613 100644
--- a/vq/vqgen.h
+++ b/vq/vqgen.h
@@ -18,7 +18,6 @@ typedef struct vqgen{
int it;
int elements;
- int quantbits;
/* point cache */
double *pointlist;
@@ -54,13 +53,13 @@ typedef struct vqbook{
} vqbook;
extern void vqgen_init(vqgen *v,int elements,int entries,
- double (*metric)(vqgen *,double *, double *),
- int quant);
+ double (*metric)(vqgen *,double *, double *));
extern void vqgen_addpoint(vqgen *v, double *p);
extern double *vqgen_midpoint(vqgen *v);
extern double vqgen_iterate(vqgen *v);
extern int vqenc_entry(vqbook *b,double *val);
extern void vqgen_book(vqgen *v,vqbook *b);
+extern double *_now(vqgen *v,long ptr);
#endif