123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- /********************************************************************
- * *
- * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE. *
- * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
- * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. *
- * PLEASE READ THESE TERMS DISTRIBUTING. *
- * *
- * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000 *
- * by Monty <monty@xiph.org> and The XIPHOPHORUS Company *
- * http://www.xiph.org/ *
- * *
- ********************************************************************
- function: floor backend 0 implementation
- last mod: $Id: floor0.c,v 1.11.2.1.2.6 2000/05/08 08:25:43 xiphmont Exp $
- ********************************************************************/
- #include <stdlib.h>
- #include <string.h>
- #include <math.h>
- #include "vorbis/codec.h"
- #include "bitwise.h"
- #include "registry.h"
- #include "lpc.h"
- #include "lsp.h"
- #include "bookinternal.h"
- #include "sharedbook.h"
- #include "scales.h"
- #include "misc.h"
- typedef struct {
- long n;
- int ln;
- int m;
- int *linearmap;
- vorbis_info_floor0 *vi;
- lpc_lookup lpclook;
- } vorbis_look_floor0;
- static void free_info(vorbis_info_floor *i){
- if(i){
- memset(i,0,sizeof(vorbis_info_floor0));
- free(i);
- }
- }
- static void free_look(vorbis_look_floor *i){
- vorbis_look_floor0 *look=(vorbis_look_floor0 *)i;
- if(i){
- if(look->linearmap)free(look->linearmap);
- lpc_clear(&look->lpclook);
- memset(look,0,sizeof(vorbis_look_floor0));
- free(look);
- }
- }
- static void pack (vorbis_info_floor *i,oggpack_buffer *opb){
- vorbis_info_floor0 *info=(vorbis_info_floor0 *)i;
- int j;
- _oggpack_write(opb,info->order,8);
- _oggpack_write(opb,info->rate,16);
- _oggpack_write(opb,info->barkmap,16);
- _oggpack_write(opb,info->ampbits,6);
- _oggpack_write(opb,info->ampdB,8);
- _oggpack_write(opb,info->numbooks-1,4);
- for(j=0;j<info->numbooks;j++)
- _oggpack_write(opb,info->books[j],8);
- }
- static vorbis_info_floor *unpack (vorbis_info *vi,oggpack_buffer *opb){
- int j;
- vorbis_info_floor0 *info=malloc(sizeof(vorbis_info_floor0));
- info->order=_oggpack_read(opb,8);
- info->rate=_oggpack_read(opb,16);
- info->barkmap=_oggpack_read(opb,16);
- info->ampbits=_oggpack_read(opb,6);
- info->ampdB=_oggpack_read(opb,8);
- info->numbooks=_oggpack_read(opb,4)+1;
-
- if(info->order<1)goto err_out;
- if(info->rate<1)goto err_out;
- if(info->barkmap<1)goto err_out;
- if(info->numbooks<1)goto err_out;
- for(j=0;j<info->numbooks;j++){
- info->books[j]=_oggpack_read(opb,8);
- if(info->books[j]<0 || info->books[j]>=vi->books)goto err_out;
- }
- return(info);
- err_out:
- free_info(info);
- return(NULL);
- }
- /* initialize Bark scale and normalization lookups. We could do this
- with static tables, but Vorbis allows a number of possible
- combinations, so it's best to do it computationally.
- The below is authoritative in terms of defining scale mapping.
- Note that the scale depends on the sampling rate as well as the
- linear block and mapping sizes */
- static vorbis_look_floor *look (vorbis_dsp_state *vd,vorbis_info_mode *mi,
- vorbis_info_floor *i){
- int j;
- double scale;
- vorbis_info *vi=vd->vi;
- vorbis_info_floor0 *info=(vorbis_info_floor0 *)i;
- vorbis_look_floor0 *look=malloc(sizeof(vorbis_look_floor0));
- look->m=info->order;
- look->n=vi->blocksizes[mi->blockflag]/2;
- look->ln=info->barkmap;
- look->vi=info;
- lpc_init(&look->lpclook,look->ln,look->m);
- /* we choose a scaling constant so that:
- floor(bark(rate/2-1)*C)=mapped-1
- floor(bark(rate/2)*C)=mapped */
- scale=look->ln/toBARK(info->rate/2.);
- /* the mapping from a linear scale to a smaller bark scale is
- straightforward. We do *not* make sure that the linear mapping
- does not skip bark-scale bins; the decoder simply skips them and
- the encoder may do what it wishes in filling them. They're
- necessary in some mapping combinations to keep the scale spacing
- accurate */
- look->linearmap=malloc(look->n*sizeof(int));
- for(j=0;j<look->n;j++){
- int val=floor( toBARK((info->rate/2.)/look->n*j)
- *scale); /* bark numbers represent band edges */
- if(val>look->ln)val=look->ln; /* guard against the approximation */
- look->linearmap[j]=val;
- }
- return look;
- }
- #include <stdio.h>
- /* less efficient than the decode side (written for clarity). We're
- not bottlenecked here anyway */
- double _curve_to_lpc(double *curve,double *lpc,vorbis_look_floor0 *l,
- long frameno){
- /* map the input curve to a bark-scale curve for encoding */
-
- int mapped=l->ln;
- double *work=alloca(sizeof(double)*mapped);
- int i,j,last=0;
- memset(work,0,sizeof(double)*mapped);
-
- /* Only the decode side is behavior-specced; for now in the encoder,
- we select the maximum value of each band as representative (this
- helps make sure peaks don't go out of range. In error terms,
- selecting min would make more sense, but the codebook is trained
- numerically, so we don't actually lose. We'd still want to
- use the original curve for error and noise estimation */
-
- for(i=0;i<l->n;i++){
- int bark=l->linearmap[i];
- if(work[bark]<curve[i])work[bark]=curve[i];
- if(bark>last+1){
- /* If the bark scale is climbing rapidly, some bins may end up
- going unused. This isn't a waste actually; it keeps the
- scale resolution even so that the LPC generator has an easy
- time. However, if we leave the bins empty we lose energy.
- So, fill 'em in. The decoder does not do anything with he
- unused bins, so we can fill them anyway we like to end up
- with a better spectral curve */
- /* we'll always have a bin zero, so we don't need to guard init */
- long span=bark-last;
- for(j=1;j<span;j++){
- double del=(double)j/span;
- work[j+last]=work[bark]*del+work[last]*(1.-del);
- }
- }
- last=bark;
- }
- #if 0
- { /******************/
- FILE *of;
- char buffer[80];
- int i;
- sprintf(buffer,"Fmask_%d.m",frameno);
- of=fopen(buffer,"w");
- for(i=0;i<mapped;i++)
- fprintf(of,"%g\n",work[i]);
- fclose(of);
- }
- #endif
- return vorbis_lpc_from_curve(work,lpc,&(l->lpclook));
- }
- /* generate the whole freq response curve of an LPC IIR filter */
- void _lpc_to_curve(double *curve,double *lpc,double amp,
- vorbis_look_floor0 *l,char *name,long frameno){
- double *lcurve=alloca(sizeof(double)*(l->ln*2));
- int i;
- if(amp==0){
- memset(curve,0,sizeof(double)*l->n);
- return;
- }
- vorbis_lpc_to_curve(lcurve,lpc,amp,&(l->lpclook));
- #if 0
- { /******************/
- FILE *of;
- char buffer[80];
- int i;
- sprintf(buffer,"%s_%d.m",name,frameno);
- of=fopen(buffer,"w");
- for(i=0;i<l->ln;i++)
- fprintf(of,"%g\n",lcurve[i]);
- fclose(of);
- }
- #endif
- for(i=0;i<l->n;i++)curve[i]=lcurve[l->linearmap[i]];
- }
- static long seq=0;
- static int forward(vorbis_block *vb,vorbis_look_floor *i,
- double *in,double *out){
- long j,k;
- vorbis_look_floor0 *look=(vorbis_look_floor0 *)i;
- vorbis_info_floor0 *info=look->vi;
- double *work=alloca(look->n*sizeof(double));
- double amp;
- long bits=0;
- /* our floor comes in on a linear scale; go to a [-Inf...0] dB
- scale. The curve has to be positive, so we offset it. */
- for(j=0;j<look->n;j++)work[j]=todB(in[j])+info->ampdB;
- /* use 'out' as temp storage */
- /* Convert our floor to a set of lpc coefficients */
- amp=sqrt(_curve_to_lpc(work,out,look,vb->sequence));
-
- /* amp is in the range (0. to ampdB]. Encode that range using
- ampbits bits */
-
- {
- long maxval=(1<<info->ampbits)-1;
-
- long val=rint(amp/info->ampdB*maxval);
- if(val<0)val=0; /* likely */
- if(val>maxval)val=maxval; /* not bloody likely */
- _oggpack_write(&vb->opb,val,info->ampbits);
- if(val>0)
- amp=(float)val/maxval*info->ampdB;
- else
- amp=0;
- }
- if(amp>0){
- /* LSP <-> LPC is orthogonal and LSP quantizes more stably */
- vorbis_lpc_to_lsp(out,out,look->m);
- #ifdef ANALYSIS
- if(vb->mode==0)_analysis_output("lsp",seq++,out,look->m,0,0);
- #endif
- #ifdef TRAIN
- {
- int j;
- FILE *of;
- char buffer[80];
- sprintf(buffer,"lsp0coeff_%d.vqd",vb->mode);
- of=fopen(buffer,"a");
- for(j=0;j<look->m;j++)
- fprintf(of,"%g, ",out[j]);
- fprintf(of,"\n");
- fclose(of);
- }
- #endif
- #if 0
- { /******************/
- vorbis_lsp_to_lpc(out,work,look->m);
- _lpc_to_curve(work,work,amp,look,"Fprefloor",vb->sequence);
- }
- #endif
- /* code the spectral envelope, and keep track of the actual
- quantized values; we don't want creeping error as each block is
- nailed to the last quantized value of the previous block. */
- /* the spec supports using one of a number of codebooks. Right
- now, encode using this lib supports only one */
- _oggpack_write(&vb->opb,0,_ilog(info->numbooks));
- {
- codebook *b=vb->vd->fullbooks+info->books[0];
- double last=0.;
- for(j=0;j<look->m;){
- for(k=0;k<b->dim;k++)out[j+k]-=last;
- bits+=vorbis_book_encodev(b,out+j,&vb->opb);
- for(k=0;k<b->dim;k++,j++)out[j]+=last;
- last=out[j-1];
- }
- }
- /* take the coefficients back to a spectral envelope curve */
- vorbis_lsp_to_lpc(out,out,look->m);
- _lpc_to_curve(out,out,amp,look,"Ffloor",vb->sequence);
- for(j=0;j<look->n;j++)out[j]= fromdB(out[j]-info->ampdB);
- return(1);
- }
- memset(out,0,sizeof(double)*look->n);
- return(0);
- }
- static int inverse(vorbis_block *vb,vorbis_look_floor *i,double *out){
- vorbis_look_floor0 *look=(vorbis_look_floor0 *)i;
- vorbis_info_floor0 *info=look->vi;
- int j,k;
-
- int ampraw=_oggpack_read(&vb->opb,info->ampbits);
- if(ampraw>0){
- long maxval=(1<<info->ampbits)-1;
- double amp=(float)ampraw/maxval*info->ampdB;
- int booknum=_oggpack_read(&vb->opb,_ilog(info->numbooks));
- codebook *b=vb->vd->fullbooks+info->books[booknum];
- double last=0.;
- memset(out,0,sizeof(double)*look->m);
- for(j=0;j<look->m;j+=b->dim)
- vorbis_book_decodevs(b,out+j,&vb->opb,1,-1);
- for(j=0;j<look->m;){
- for(k=0;k<b->dim;k++,j++)out[j]+=last;
- last=out[j-1];
- }
- /* take the coefficients back to a spectral envelope curve */
- vorbis_lsp_to_lpc(out,out,look->m);
- _lpc_to_curve(out,out,amp,look,"",0);
- for(j=0;j<look->n;j++)out[j]= fromdB(out[j]-info->ampdB);
- return(1);
- }else
- memset(out,0,sizeof(double)*look->n);
- return(0);
- }
- /* export hooks */
- vorbis_func_floor floor0_exportbundle={
- &pack,&unpack,&look,&free_info,&free_look,&forward,&inverse
- };
|