/external/libvorbis/lib/ |
codebook.h | 39 long *lengthlist; /* codeword lengths in bits */ member in struct:static_codebook
|
/external/libvorbis/vq/ |
localcodebook.h | 39 long *lengthlist; /* codeword lengths in bits */ member in struct:static_codebook
|
bookutil.c | 50 if(book->c->lengthlist[index]<=0){ 57 if(c->lengthlist[i]>0){ 287 /* load the lengthlist */ 290 c->lengthlist=_ogg_malloc(sizeof(long)*c->entries); 292 if(get_next_ivalue(in,c->lengthlist+i)){ 413 long *lengthlist=_ogg_calloc(vals,sizeof(long)); local 425 build_tree_from_lengths(upper,newhist,lengthlist); 430 lengths[i]=lengthlist[upper++]; 434 free(lengthlist); 453 /* lengthlist */ [all...] |
/external/tremolo/Tremolo/ |
codebook.c | 216 static int _make_decode_table(codebook *s,char *lengthlist,long quantvals, 221 if (!lengthlist) return 1; 233 if(_make_words(lengthlist,s->entries, 244 if(_make_words(lengthlist,s->entries,work,quantvals,s,opb,maptype)) goto error_out; 386 char *lengthlist=NULL; local 411 lengthlist=(char *)calloc(s->entries, sizeof(*lengthlist)); 412 if(!lengthlist) goto _eofout; 422 lengthlist[i]=(char)(num+1); 426 lengthlist[i]=0 [all...] |