Searched refs:book (Results 1 - 20 of 20) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dcodebook.h64 /* this structures an arbitrary trained book to quickly find the
129 extern int _best(codebook *book, float *a, int step);
133 extern int vorbis_book_besterror(codebook *book,float *a,int step,int addmul);
134 extern long vorbis_book_codeword(codebook *book,int entry);
135 extern long vorbis_book_codelen(codebook *book,int entry);
142 extern int vorbis_book_encode(codebook *book, int a, oggpack_buffer *b);
143 extern int vorbis_book_errorv(codebook *book, float *a);
144 extern int vorbis_book_encodev(codebook *book, int best,float *a,
147 extern long vorbis_book_decode(codebook *book, oggpack_buffer *b);
148 extern long vorbis_book_decodevs_add(codebook *book, floa
[all...]
H A Dcodebook.c260 int vorbis_book_encode(codebook *book, int a, oggpack_buffer *b){ argument
261 if(a<0 || a>=book->c->entries)return(0);
262 oggpack_write(b,book->codelist[a],book->c->lengthlist[a]);
263 return(book->c->lengthlist[a]);
281 int vorbis_book_errorv(codebook *book,float *a){ argument
282 int dim=book->dim,k;
283 int best=_best(book,a,1);
285 a[k]=(book->valuelist+best*dim)[k];
290 int vorbis_book_encodev(codebook *book,in argument
313 decode_packed_entry_number(codebook *book, oggpack_buffer *b) argument
375 vorbis_book_decode(codebook *book, oggpack_buffer *b) argument
387 vorbis_book_decodevs_add(codebook *book,float *a,oggpack_buffer *b,int n) argument
406 vorbis_book_decodev_add(codebook *book,float *a,oggpack_buffer *b,int n) argument
451 vorbis_book_decodev_set(codebook *book,float *a,oggpack_buffer *b,int n) argument
474 vorbis_book_decodevv_add(codebook *book,float **a,long offset,int ch, oggpack_buffer *b,int n) argument
[all...]
H A Dsharedbook.c292 /* static book is not cleared; we're likely called on the lookup and
458 int _best(codebook *book, float *a, int step){ argument
459 encode_aux_threshmatch *tt=book->c->thresh_tree;
462 encode_aux_nearestmatch *nt=book->c->nearest_tree;
463 encode_aux_pigeonhole *pt=book->c->pigeon_tree;
465 int dim=book->dim;
493 if(book->c->lengthlist[index]>0) /* is this unused? If so, we'll
502 const static_codebook *c=book->c;
533 float this=_dist(dim,book->valuelist+list[i]*dim,a,step);
548 float *p=book
599 vorbis_book_codeword(codebook *book,int entry) argument
606 vorbis_book_codelen(codebook *book,int entry) argument
[all...]
H A Dres0.c177 code with a partitioned book */
179 oggpack_write(opb,info->groupbook,8); /* group huffman book */
228 int book=oggpack_read(opb,8); local
229 if(book<0) goto errout;
230 info->booklist[j]=book;
319 static int local_book_besterror(codebook *book,float *a){ argument
320 int dim=book->dim,i,k,o;
322 encode_aux_threshmatch *tt=book->c->thresh_tree;
346 if(book->c->lengthlist[best]<=0){
347 const static_codebook *c=book
377 _encodepart(oggpack_buffer *opb,float *vec, int n, codebook *book,long *acc) argument
[all...]
H A Dfloor1.c917 int book=info->class_subbook[class][bookas[k]]; local
918 if(book>=0){
920 if(out[j+k]<(books+book)->entries)
921 look->postbits+=vorbis_book_encode(books+book,
1003 int book=info->class_subbook[class][cval&(csub-1)]; local
1005 if(book>=0){
1006 if((fit_value[j+k]=vorbis_book_decode(books+book,&vb->opb))==-1)
H A Dvorbisenc.c447 static int book_dup_or_new(codec_setup_info *ci,const static_codebook *book){ argument
450 if(ci->book_param[i]==book)return(i);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dlocalcodebook.h64 /* this structures an arbitrary trained book to quickly find the
129 extern int _best(codebook *book, float *a, int step);
133 extern int vorbis_book_besterror(codebook *book,float *a,int step,int addmul);
134 extern long vorbis_book_codeword(codebook *book,int entry);
135 extern long vorbis_book_codelen(codebook *book,int entry);
142 extern int vorbis_book_encode(codebook *book, int a, oggpack_buffer *b);
143 extern int vorbis_book_errorv(codebook *book, float *a);
144 extern int vorbis_book_encodev(codebook *book, int best,float *a,
147 extern long vorbis_book_decode(codebook *book, oggpack_buffer *b);
148 extern long vorbis_book_decodevs_add(codebook *book, floa
[all...]
H A Dmetrics.c126 int i,k,book; local
148 for(book=0;book<books;book++){
150 codebook *b=bs[book];
154 fprintf(stderr,"Book %d statistics:------------------\n",book);
158 sprintf(buffer,"%s-%d-mse.m",basename,book);
169 sqrt((histogram_errorsq[book]+i*dim)[k]/histogram[book][i]));
174 sprintf(buffer,"%s-%d-me.m",basename,book);
209 process_one(codebook *b,int book,float *a,int dim,int step,int addmul, float base) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dvorbis_enc.c210 int i, book; local
219 // codebook 0..14 - floor1 book, values 0..255
222 for (book = 0; book < venc->ncodebooks; book++) {
223 vorbis_enc_codebook * cb = &venc->codebooks[book];
225 cb->ndimentions = cvectors[book].dim;
226 cb->nentries = cvectors[book].real_len;
227 cb->min = cvectors[book].min;
228 cb->delta = cvectors[book]
710 vorbis_enc_codebook * book = &venc->codebooks[c->masterbook]; local
728 int book = c->books[cval & (csub-1)]; local
740 put_vector(vorbis_enc_codebook * book, PutBitContext * pb, float * num) argument
788 vorbis_enc_codebook * book = &venc->codebooks[rc->classbook]; local
799 vorbis_enc_codebook * book = &venc->codebooks[nbook]; local
[all...]
H A Dvorbis_dec.c509 av_log(vc->avccontext, AV_LOG_ERROR, "Subclass book index %d is out of range.\n", bits);
514 AV_DEBUG(" book %d. : %d \n", k, floor_setup->data.t1.subclass_books[j][k]);
566 /* read book indexes */
603 AV_DEBUG("floor0 book list pointer: %p\n",
682 av_log(vc->avccontext, AV_LOG_ERROR, "book value %d out of range. \n", bits);
687 AV_DEBUG(" %d class casscade depth %d book: %d \n", j, k, res_setup->books[j][k]);
1061 AV_DEBUG( "floor0 dec: book dimension: %d\n", codebook.dimensions );
1159 int_fast16_t book; local
1191 book=vf->subclass_books[class_][cval & csub];
1193 AV_DEBUG("book
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libvorbis-1.2.3/doc/
H A D07-floor1.tex106 [subclass] books and a master book used to encode which alternate
205 14) [book] = array [floor1_subclass_books] element [class],([cval] bitwise AND [csub])
207 16) if ( [book] is not less than zero ) \{
210 [book] in scalar context
212 \} else [book] is less than zero \{
H A D05-comment.tex114 The artist generally considered responsible for the work. In popular music this is usually the performing band or singer. For classical music it would be the composer. For an audio book it would be the author of the original text.
117 The artist(s) who performed the work. In classical music this would be the conductor, orchestra, soloists. In an audio book it would be the actor who did the reading. In popular music this is typically the same as the ARTIST and is omitted.
H A D06-floor0.tex84 \item The book number used for decode
87 greater than the maximum possible book value are reserved.
H A D08-residue.tex179 code classification codewords. The number of dimensions in book
182 codeword. Note that the number of entries and dimensions in book
205 Finally, we read in a list of book numbers, each corresponding to
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/asm/
H A Dpa-risc2.s14 ; architecture. Also see the book "PA-RISC 2.0 Architecture"
H A Dpa-risc2W.s8 ; architecture. Also see the book "PA-RISC 2.0 Architecture"
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/bn/asm/
H A Dpa-risc2.s14 ; architecture. Also see the book "PA-RISC 2.0 Architecture"
H A Dpa-risc2W.s8 ; architecture. Also see the book "PA-RISC 2.0 Architecture"
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/build-aux/
H A Dtexinfo.tex2372 % ttsl for book titles, do we?
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/mtools-4.0.10/
H A Dtexinfo.tex2520 % ttsl for book titles, do we?

Completed in 225 milliseconds