sharedbook.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:12k
源码类别:

Windows CE

开发平台:

C/C++

  1. /********************************************************************
  2.  *                                                                  *
  3.  * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE.   *
  4.  *                                                                  *
  5.  * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
  6.  * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
  7.  * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
  8.  *                                                                  *
  9.  * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002    *
  10.  * BY THE Xiph.Org FOUNDATION http://www.xiph.org/                  *
  11.  *                                                                  *
  12.  ********************************************************************
  13.  function: basic shared codebook operations
  14.  ********************************************************************/
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include "ogg.h"
  18. #include "os.h"
  19. #include "misc.h"
  20. #include "ivorbiscodec.h"
  21. #include "codebook.h"
  22. /**** pack/unpack helpers ******************************************/
  23. int _ilog(unsigned int v){
  24.   int ret=0;
  25.   while(v){
  26.     ret++;
  27.     v>>=1;
  28.   }
  29.   return(ret);
  30. }
  31. /* 32 bit float (not IEEE; nonnormalized mantissa +
  32.    biased exponent) : neeeeeee eeemmmmm mmmmmmmm mmmmmmmm 
  33.    Why not IEEE?  It's just not that important here. */
  34. #define VQ_FEXP 10
  35. #define VQ_FMAN 21
  36. #define VQ_FEXP_BIAS 768 /* bias toward values smaller than 1. */
  37. static ogg_int32_t _float32_unpack(long val,int *point){
  38.   long   mant=val&0x1fffff;
  39.   int    sign=val&0x80000000;
  40.   long   exp =(val&0x7fe00000L)>>VQ_FMAN;
  41.   exp-=(VQ_FMAN-1)+VQ_FEXP_BIAS;
  42.   if(mant){
  43.     while(!(mant&0x40000000)){
  44.       mant<<=1;
  45.       exp-=1;
  46.     }
  47.     if(sign)mant= -mant;
  48.   }else{
  49.     sign=0;
  50.     exp=-9999;
  51.   }
  52.   *point=exp;
  53.   return mant;
  54. }
  55. /* given a list of word lengths, generate a list of codewords.  Works
  56.    for length ordered or unordered, always assigns the lowest valued
  57.    codewords first.  Extended to handle unused entries (length 0) */
  58. ogg_uint32_t *_make_words(long *l,long n,long sparsecount){
  59.   long i,j,count=0;
  60.   ogg_uint32_t marker[33];
  61.   ogg_uint32_t *r=(ogg_uint32_t *)_ogg_malloc((sparsecount?sparsecount:n)*sizeof(*r));
  62.   memset(marker,0,sizeof(marker));
  63.   for(i=0;i<n;i++){
  64.     long length=l[i];
  65.     if(length>0){
  66.       ogg_uint32_t entry=marker[length];
  67.       
  68.       /* when we claim a node for an entry, we also claim the nodes
  69.  below it (pruning off the imagined tree that may have dangled
  70.  from it) as well as blocking the use of any nodes directly
  71.  above for leaves */
  72.       
  73.       /* update ourself */
  74.       if(length<32 && (entry>>length)){
  75. /* error condition; the lengths must specify an overpopulated tree */
  76. _ogg_free(r);
  77. return(NULL);
  78.       }
  79.       r[count++]=entry;
  80.     
  81.       /* Look to see if the next shorter marker points to the node
  82.  above. if so, update it and repeat.  */
  83.       {
  84. for(j=length;j>0;j--){
  85.   
  86.   if(marker[j]&1){
  87.     /* have to jump branches */
  88.     if(j==1)
  89.       marker[1]++;
  90.     else
  91.       marker[j]=marker[j-1]<<1;
  92.     break; /* invariant says next upper marker would already
  93.       have been moved if it was on the same path */
  94.   }
  95.   marker[j]++;
  96. }
  97.       }
  98.       
  99.       /* prune the tree; the implicit invariant says all the longer
  100.  markers were dangling from our just-taken node.  Dangle them
  101.  from our *new* node. */
  102.       for(j=length+1;j<33;j++)
  103. if((marker[j]>>1) == entry){
  104.   entry=marker[j];
  105.   marker[j]=marker[j-1]<<1;
  106. }else
  107.   break;
  108.     }else
  109.       if(sparsecount==0)count++;
  110.   }
  111.     
  112.   /* bitreverse the words because our bitwise packer/unpacker is LSb
  113.      endian */
  114.   for(i=0,count=0;i<n;i++){
  115.     ogg_uint32_t temp=0;
  116.     for(j=0;j<l[i];j++){
  117.       temp<<=1;
  118.       temp|=(r[count]>>j)&1;
  119.     }
  120.     if(sparsecount){
  121.       if(l[i])
  122. r[count++]=temp;
  123.     }else
  124.       r[count++]=temp;
  125.   }
  126.   return(r);
  127. }
  128. /* there might be a straightforward one-line way to do the below
  129.    that's portable and totally safe against roundoff, but I haven't
  130.    thought of it.  Therefore, we opt on the side of caution */
  131. long _book_maptype1_quantvals(const static_codebook *b){
  132.   /* get us a starting hint, we'll polish it below */
  133.   int bits=_ilog(b->entries);
  134.   int vals=b->entries>>((bits-1)*(b->dim-1)/b->dim);
  135.   while(1){
  136.     long acc=1;
  137.     long acc1=1;
  138.     int i;
  139.     for(i=0;i<b->dim;i++){
  140.       acc*=vals;
  141.       acc1*=vals+1;
  142.     }
  143.     if(acc<=b->entries && acc1>b->entries){
  144.       return(vals);
  145.     }else{
  146.       if(acc>b->entries){
  147. vals--;
  148.       }else{
  149. vals++;
  150.       }
  151.     }
  152.   }
  153. }
  154. /* different than what _book_unquantize does for mainline:
  155.    we repack the book in a fixed point format that shares the same
  156.    binary point.  Upon first use, we can shift point if needed */
  157. /* we need to deal with two map types: in map type 1, the values are
  158.    generated algorithmically (each column of the vector counts through
  159.    the values in the quant vector). in map type 2, all the values came
  160.    in in an explicit list.  Both value lists must be unpacked */
  161. ogg_int32_t *_book_unquantize(const static_codebook *b,int n,int *sparsemap,
  162.       int *maxpoint){
  163.   long j,k,count=0;
  164.   if(b->maptype==1 || b->maptype==2){
  165.     int quantvals;
  166.     int minpoint,delpoint;
  167.     ogg_int32_t mindel=_float32_unpack(b->q_min,&minpoint);
  168.     ogg_int32_t delta=_float32_unpack(b->q_delta,&delpoint);
  169.     ogg_int32_t *r=(ogg_int32_t *)_ogg_calloc(n*b->dim,sizeof(*r));
  170.     int *rp=(int *)_ogg_calloc(n*b->dim,sizeof(*rp));
  171.     *maxpoint=minpoint;
  172.     /* maptype 1 and 2 both use a quantized value vector, but
  173.        different sizes */
  174.     switch(b->maptype){
  175.     case 1:
  176.       /* most of the time, entries%dimensions == 0, but we need to be
  177.  well defined.  We define that the possible vales at each
  178.  scalar is values == entries/dim.  If entries%dim != 0, we'll
  179.  have 'too few' values (values*dim<entries), which means that
  180.  we'll have 'left over' entries; left over entries use zeroed
  181.  values (and are wasted).  So don't generate codebooks like
  182.  that */
  183.       quantvals=_book_maptype1_quantvals(b);
  184.       for(j=0;j<b->entries;j++){
  185. if((sparsemap && b->lengthlist[j]) || !sparsemap){
  186.   ogg_int32_t last=0;
  187.   int lastpoint=0;
  188.   int indexdiv=1;
  189.   for(k=0;k<b->dim;k++){
  190.     int index= (j/indexdiv)%quantvals;
  191.     int point;
  192.     int val=VFLOAT_MULTI(delta,delpoint,
  193.  abs(b->quantlist[index]),&point);
  194.     val=VFLOAT_ADD(mindel,minpoint,val,point,&point);
  195.     val=VFLOAT_ADD(last,lastpoint,val,point,&point);
  196.     
  197.     if(b->q_sequencep){
  198.       last=val;   
  199.       lastpoint=point;
  200.     }
  201.     
  202.     if(sparsemap){
  203.       r[sparsemap[count]*b->dim+k]=val;
  204.       rp[sparsemap[count]*b->dim+k]=point;
  205.     }else{
  206.       r[count*b->dim+k]=val;
  207.       rp[count*b->dim+k]=point;
  208.     }
  209.     if(*maxpoint<point)*maxpoint=point;
  210.     indexdiv*=quantvals;
  211.   }
  212.   count++;
  213. }
  214.       }
  215.       break;
  216.     case 2:
  217.       for(j=0;j<b->entries;j++){
  218. if((sparsemap && b->lengthlist[j]) || !sparsemap){
  219.   ogg_int32_t last=0;
  220.   int         lastpoint=0;
  221.   for(k=0;k<b->dim;k++){
  222.     int point;
  223.     int val=VFLOAT_MULTI(delta,delpoint,
  224.  abs(b->quantlist[j*b->dim+k]),&point);
  225.     val=VFLOAT_ADD(mindel,minpoint,val,point,&point);
  226.     val=VFLOAT_ADD(last,lastpoint,val,point,&point);
  227.     
  228.     if(b->q_sequencep){
  229.       last=val;   
  230.       lastpoint=point;
  231.     }
  232.     if(sparsemap){
  233.       r[sparsemap[count]*b->dim+k]=val;
  234.       rp[sparsemap[count]*b->dim+k]=point;
  235.     }else{
  236.       r[count*b->dim+k]=val;
  237.       rp[count*b->dim+k]=point;
  238.     }
  239.     if(*maxpoint<point)*maxpoint=point;
  240.   }
  241.   count++;
  242. }
  243.       }
  244.       break;
  245.     }
  246.     for(j=0;j<n*b->dim;j++)
  247.       if(rp[j]<*maxpoint)
  248. r[j]>>=*maxpoint-rp[j];
  249.     
  250.     _ogg_free(rp);
  251.     return(r);
  252.   }
  253.   return(NULL);
  254. }
  255. void vorbis_staticbook_clear(static_codebook *b){
  256.   if(b->quantlist)_ogg_free(b->quantlist);
  257.   if(b->lengthlist)_ogg_free(b->lengthlist);
  258.   memset(b,0,sizeof(*b));
  259. }
  260. void vorbis_staticbook_destroy(static_codebook *b){
  261.   vorbis_staticbook_clear(b);
  262.   _ogg_free(b);
  263. }
  264. void vorbis_book_clear(codebook *b){
  265.   /* static book is not cleared; we're likely called on the lookup and
  266.      the static codebook belongs to the info struct */
  267.   if(b->valuelist)_ogg_free(b->valuelist);
  268.   if(b->codelist)_ogg_free(b->codelist);
  269.   if(b->dec_index)_ogg_free(b->dec_index);
  270.   if(b->dec_codelengths)_ogg_free(b->dec_codelengths);
  271.   if(b->dec_firsttable)_ogg_free(b->dec_firsttable);
  272.   memset(b,0,sizeof(*b));
  273. }
  274. static ogg_uint32_t bitreverse(ogg_uint32_t x){
  275.   x=    ((x>>16)&0x0000ffffUL) | ((x<<16)&0xffff0000UL);
  276.   x=    ((x>> 8)&0x00ff00ffUL) | ((x<< 8)&0xff00ff00UL);
  277.   x=    ((x>> 4)&0x0f0f0f0fUL) | ((x<< 4)&0xf0f0f0f0UL);
  278.   x=    ((x>> 2)&0x33333333UL) | ((x<< 2)&0xccccccccUL);
  279.   return((x>> 1)&0x55555555UL) | ((x<< 1)&0xaaaaaaaaUL);
  280. }
  281. static int __cdecl sort32a(const void *a,const void *b){
  282.   return (**(ogg_uint32_t **)a>**(ogg_uint32_t **)b)-
  283.     (**(ogg_uint32_t **)a<**(ogg_uint32_t **)b);
  284. }
  285. /* decode codebook arrangement is more heavily optimized than encode */
  286. int vorbis_book_init_decode(codebook *c,const static_codebook *s){
  287.   int i,j,n=0,tabn;
  288.   int *sortindex;
  289.   memset(c,0,sizeof(*c));
  290.   
  291.   /* count actually used entries */
  292.   for(i=0;i<s->entries;i++)
  293.     if(s->lengthlist[i]>0)
  294.       n++;
  295.   c->entries=s->entries;
  296.   c->used_entries=n;
  297.   c->dim=s->dim;
  298.   c->q_min=s->q_min;
  299.   c->q_delta=s->q_delta;
  300.   /* two different remappings go on here.  
  301.      First, we collapse the likely sparse codebook down only to
  302.      actually represented values/words.  This collapsing needs to be
  303.      indexed as map-valueless books are used to encode original entry
  304.      positions as integers.
  305.      Second, we reorder all vectors, including the entry index above,
  306.      by sorted bitreversed codeword to allow treeless decode. */
  307.   {
  308.     /* perform sort */
  309.     ogg_uint32_t *codes=_make_words(s->lengthlist,s->entries,c->used_entries);
  310.     ogg_uint32_t **codep=(ogg_uint32_t **)alloca(sizeof(*codep)*n);
  311.     
  312.     if(codes==NULL)goto err_out;
  313.     for(i=0;i<n;i++){
  314.       codes[i]=bitreverse(codes[i]);
  315.       codep[i]=codes+i;
  316.     }
  317.     qsort(codep,n,sizeof(*codep),sort32a);
  318.     sortindex=(int *)alloca(n*sizeof(*sortindex));
  319.     c->codelist=(ogg_uint32_t *)_ogg_malloc(n*sizeof(*c->codelist));
  320.     /* the index is a reverse index */
  321.     for(i=0;i<n;i++){
  322.       int position=codep[i]-codes;
  323.       sortindex[position]=i;
  324.     }
  325.     for(i=0;i<n;i++)
  326.       c->codelist[sortindex[i]]=codes[i];
  327.     _ogg_free(codes);
  328.   }
  329.   
  330.   c->valuelist=_book_unquantize(s,n,sortindex,&c->binarypoint);
  331.   c->dec_index=(int *)_ogg_malloc(n*sizeof(*c->dec_index));
  332.   
  333.   for(n=0,i=0;i<s->entries;i++)
  334.     if(s->lengthlist[i]>0)
  335.       c->dec_index[sortindex[n++]]=i;
  336.  
  337.   c->dec_codelengths=(char *)_ogg_malloc(n*sizeof(*c->dec_codelengths));
  338.   for(n=0,i=0;i<s->entries;i++)
  339.     if(s->lengthlist[i]>0)
  340.       c->dec_codelengths[sortindex[n++]]=s->lengthlist[i];
  341.   c->dec_firsttablen=_ilog(c->used_entries)-4; /* this is magic */
  342.   if(c->dec_firsttablen<5)c->dec_firsttablen=5;
  343.   if(c->dec_firsttablen>8)c->dec_firsttablen=8;
  344.   tabn=1<<c->dec_firsttablen;
  345.   c->dec_firsttable=(ogg_uint32_t *)_ogg_calloc(tabn,sizeof(*c->dec_firsttable));
  346.   c->dec_maxlength=0;
  347.   for(i=0;i<n;i++){
  348.     if(c->dec_maxlength<c->dec_codelengths[i])
  349.       c->dec_maxlength=c->dec_codelengths[i];
  350.     if(c->dec_codelengths[i]<=c->dec_firsttablen){
  351.       ogg_uint32_t orig=bitreverse(c->codelist[i]);
  352.       for(j=0;j<(1<<(c->dec_firsttablen-c->dec_codelengths[i]));j++)
  353. c->dec_firsttable[orig|(j<<c->dec_codelengths[i])]=i+1;
  354.     }
  355.   }
  356.   /* now fill in 'unused' entries in the firsttable with hi/lo search
  357.      hints for the non-direct-hits */
  358.   {
  359.     ogg_uint32_t mask=0xfffffffeUL<<(31-c->dec_firsttablen);
  360.     long lo=0,hi=0;
  361.     for(i=0;i<tabn;i++){
  362.       ogg_uint32_t word=i<<(32-c->dec_firsttablen);
  363.       if(c->dec_firsttable[bitreverse(word)]==0){
  364. while((lo+1)<n && c->codelist[lo+1]<=word)lo++;
  365. while(    hi<n && word>=(c->codelist[hi]&mask))hi++;
  366. /* we only actually have 15 bits per hint to play with here.
  367.            In order to overflow gracefully (nothing breaks, efficiency
  368.            just drops), encode as the difference from the extremes. */
  369. {
  370.   unsigned long loval=lo;
  371.   unsigned long hival=n-hi;
  372.   if(loval>0x7fff)loval=0x7fff;
  373.   if(hival>0x7fff)hival=0x7fff;
  374.   c->dec_firsttable[bitreverse(word)]=
  375.     0x80000000UL | (loval<<15) | hival;
  376. }
  377.       }
  378.     }
  379.   }
  380.   
  381.   return(0);
  382.  err_out:
  383.   vorbis_book_clear(c);
  384.   return(-1);
  385. }