Displaying 2 results from an estimated 2 matches for "sequencep".
Did you mean:
  sequence
  
2000 Sep 21
0
.vqd example?
...that the vq hints
  http://www.xiph.org/archives/vorbis-dev/0000.html
talk rather about residual training.
So I can now produce .vqi files and add to them with lspvqtrain,
but can anyone supply hints for the rest of the procedure?
 vqbuild will only produce a "cloud"-type quantlist, and
sequencep is pretty much ignored.
 But if you use it anyway, you can go by hand through the xxx.vqh
file and guesstimate enough to make a bogus .vql file.
 Then I ran latticebuild to get a first try .vqh file
 Any comments about what's allowed and how to choose addmul?
 Then I tried latticetune .vqh-file...
2000 Nov 08
0
vq diffs
...(argv[1])+4,1);
+    char *filename=(char*)_ogg_calloc(strlen(argv[1])+4,1);
 
     strcpy(filename,argv[1]);
@@ -108,11 +108,11 @@
   c.dim=dim;
   c.entries=entries;
-  c.lengthlist=_ogg_malloc(entries*sizeof(long));
+  c.lengthlist=(long*)_ogg_malloc(entries*sizeof(long));
   c.maptype=1;
   c.q_sequencep=sequencep;
-  c.quantlist=_ogg_calloc(quantvals,sizeof(long));
+  c.quantlist=(long*)_ogg_calloc(quantvals,sizeof(long));
 
-  quantlist=_ogg_malloc(sizeof(long)*c.dim*c.entries);
-  hits=_ogg_malloc(c.entries*sizeof(long));
+  quantlist=(float*)_ogg_malloc(sizeof(float)*c.dim*c.entries);
+  hits=(...