Minor optimization to align p and q indexes in .vqh files.
[platform/upstream/libvorbis.git] / vq / bookutil.h
index 174fa48..55c787c 100644 (file)
@@ -12,7 +12,7 @@
  ********************************************************************
 
  function: utility functions for loading .vqh and .vqd files
- last mod: $Id: bookutil.h,v 1.1 2000/01/05 10:14:54 xiphmont Exp $
+ last mod: $Id: bookutil.h,v 1.3 2000/01/10 10:42:02 xiphmont Exp $
 
  ********************************************************************/
 
@@ -20,6 +20,8 @@
 #define _V_BOOKUTIL_H_
 
 #include <stdio.h>
+#include <sys/time.h>
+
 #include "vorbis/codebook.h"
 
 extern void      codebook_unquantize(codebook *b);
@@ -28,13 +30,13 @@ extern int       get_line_value(FILE *in,double *value);
 extern int       get_next_value(FILE *in,double *value);
 extern int       get_next_ivalue(FILE *in,long *ivalue);
 extern void      reset_next_value(void);
-extern int       get_vector(codebook *b,FILE *in,double *a);
+extern int       get_vector(codebook *b,FILE *in,int start,int num,double *a);
 extern char     *find_seek_to(FILE *in,char *s);
 
 extern codebook *codebook_load(char *filename);
 extern int       codebook_entry(codebook *b,double *val);
 
-
+extern void spinnit(char *s,int n);
 extern long float24_pack(double val);
 extern double float24_unpack(long val);