search for: encode_aux_threshmatch

Displaying 2 results from an estimated 2 matches for "encode_aux_threshmatch".

2000 Nov 08
0
vq diffs
...odebook *c=(static_codebook *)(b->c=_ogg_calloc(1,sizeof(static_codebook))); + codebook *b=(codebook*)_ogg_calloc(1,sizeof(codebook)); + static_codebook *c=(static_codebook*) + (b->c=(const static_codebook*)_ogg_calloc(1,sizeof(static_codebook))); encode_aux_nearestmatch *a=NULL; encode_aux_threshmatch *t=NULL; @@ -216,5 +217,5 @@ if(find_seek_to(in,"static encode_aux_nearestmatch _vq_aux")){ /* how big? */ - c->nearest_tree=a=_ogg_calloc(1,sizeof(encode_aux_nearestmatch)); + c->nearest_tree=a=(encode_aux_nearestmatch*)_ogg_calloc(1,sizeof(encode_aux_nearestmatch));...
2000 Sep 13
0
vq: postbeta2 patch
...sscanf(line,"%f",b+k); } if(feof(in))break; diff -bBu2 branch_postbeta2/vq/latticepare.c vorbis-postb2/vq/latticepare.c --- branch_postbeta2/vq/latticepare.c Thu Aug 31 05:00:03 2000 +++ vorbis-postb2/vq/latticepare.c Wed Sep 13 18:08:51 2000 @@ -86,5 +86,5 @@ encode_aux_threshmatch *tt=b->c->thresh_tree; int dim=b->dim; - int i,k,o; + int k,o; int best=0; @@ -102,7 +102,7 @@ static int closest(codebook *b,float *vec,int current){ - encode_aux_threshmatch *tt=b->c->thresh_tree; + /*encode_aux_threshmatch *tt=b->c->thresh_tree;*/ int dim=b-&...