X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=lib%2Fres0.c;h=c931aded387de8903aa81a32a9a1b848db3edce8;hb=ed77529436987db979f3703cbbedd5dae2dd551c;hp=a82ca2767ae35d0117d602f89dcded5b393b0355;hpb=eca3401e17af8b44d8777c3f7a5ae3e2e02e3065;p=platform%2Fupstream%2Flibvorbis.git diff --git a/lib/res0.c b/lib/res0.c index a82ca27..c931ade 100644 --- a/lib/res0.c +++ b/lib/res0.c @@ -5,13 +5,12 @@ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * * * - * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 * - * by the XIPHOPHORUS Company http://www.xiph.org/ * + * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2010 * + * by the Xiph.Org Foundation https://xiph.org/ * * * ******************************************************************** function: residue backend 0, 1 and 2 implementation - last mod: $Id: res0.c,v 1.36 2001/09/01 06:14:50 xiphmont Exp $ ********************************************************************/ @@ -23,7 +22,6 @@ #include #include #include -#include #include #include "vorbis/codec.h" #include "codec_internal.h" @@ -32,10 +30,13 @@ #include "misc.h" #include "os.h" +#if defined(TRAIN_RES) || defined (TRAIN_RESAUX) +#include +#endif + typedef struct { vorbis_info_residue0 *info; - int map; - + int parts; int stages; codebook *fullbooks; @@ -49,19 +50,23 @@ typedef struct { long phrasebits; long frames; -} vorbis_look_residue0; +#if defined(TRAIN_RES) || defined(TRAIN_RESAUX) + int train_seq; + long *training_data[8][64]; + float training_max[8][64]; + float training_min[8][64]; + float tmin; + float tmax; + int submap; +#endif -vorbis_info_residue *res0_copy_info(vorbis_info_residue *vr){ - vorbis_info_residue0 *info=(vorbis_info_residue0 *)vr; - vorbis_info_residue0 *ret=_ogg_malloc(sizeof(vorbis_info_residue0)); - memcpy(ret,info,sizeof(vorbis_info_residue0)); - return(ret); -} +} vorbis_look_residue0; void res0_free_info(vorbis_info_residue *i){ - if(i){ - memset(i,0,sizeof(vorbis_info_residue0)); - _ogg_free(i); + vorbis_info_residue0 *info=(vorbis_info_residue0 *)i; + if(info){ + memset(info,0,sizeof(*info)); + _ogg_free(info); } } @@ -71,30 +76,63 @@ void res0_free_look(vorbis_look_residue *i){ vorbis_look_residue0 *look=(vorbis_look_residue0 *)i; - fprintf(stderr,"residue bit usage %f:%f (%f total)\n", - (float)look->phrasebits/look->frames, - (float)look->postbits/look->frames, - (float)(look->postbits+look->phrasebits)/look->frames); +#ifdef TRAIN_RES + { + int j,k,l; + for(j=0;jparts;j++){ + /*fprintf(stderr,"partition %d: ",j);*/ + for(k=0;k<8;k++) + if(look->training_data[k][j]){ + char buffer[80]; + FILE *of; + codebook *statebook=look->partbooks[j][k]; + + /* long and short into the same bucket by current convention */ + sprintf(buffer,"res_sub%d_part%d_pass%d.vqd",look->submap,j,k); + of=fopen(buffer,"a"); + + for(l=0;lentries;l++) + fprintf(of,"%d:%ld\n",l,look->training_data[k][j][l]); + + fclose(of); + + /*fprintf(stderr,"%d(%.2f|%.2f) ",k, + look->training_min[k][j],look->training_max[k][j]);*/ + + _ogg_free(look->training_data[k][j]); + look->training_data[k][j]=NULL; + } + /*fprintf(stderr,"\n");*/ + } + } + fprintf(stderr,"min/max residue: %g::%g\n",look->tmin,look->tmax); + + /*fprintf(stderr,"residue bit usage %f:%f (%f total)\n", + (float)look->phrasebits/look->frames, + (float)look->postbits/look->frames, + (float)(look->postbits+look->phrasebits)/look->frames);*/ +#endif + /*vorbis_info_residue0 *info=look->info; fprintf(stderr, - "%ld frames encoded in %ld phrasebits and %ld residue bits " - "(%g/frame) \n",look->frames,look->phrasebits, - look->resbitsflat, - (look->phrasebits+look->resbitsflat)/(float)look->frames); - + "%ld frames encoded in %ld phrasebits and %ld residue bits " + "(%g/frame) \n",look->frames,look->phrasebits, + look->resbitsflat, + (look->phrasebits+look->resbitsflat)/(float)look->frames); + for(j=0;jparts;j++){ long acc=0; fprintf(stderr,"\t[%d] == ",j); for(k=0;kstages;k++) - if((info->secondstages[j]>>k)&1){ - fprintf(stderr,"%ld,",look->resbits[j][k]); - acc+=look->resbits[j][k]; - } + if((info->secondstages[j]>>k)&1){ + fprintf(stderr,"%ld,",look->resbits[j][k]); + acc+=look->resbits[j][k]; + } fprintf(stderr,":: (%ld vals) %1.2fbits/sample\n",look->resvals[j], - acc?(float)acc/(look->resvals[j]*info->grouping):0); + acc?(float)acc/(look->resvals[j]*info->grouping):0); } fprintf(stderr,"\n");*/ @@ -104,18 +142,10 @@ void res0_free_look(vorbis_look_residue *i){ for(j=0;jpartvals;j++) _ogg_free(look->decodemap[j]); _ogg_free(look->decodemap); - memset(i,0,sizeof(vorbis_look_residue0)); - _ogg_free(i); - } -} -static int ilog(unsigned int v){ - int ret=0; - while(v){ - ret++; - v>>=1; + memset(look,0,sizeof(*look)); + _ogg_free(look); } - return(ret); } static int icount(unsigned int v){ @@ -134,8 +164,8 @@ void res0_pack(vorbis_info_residue *vr,oggpack_buffer *opb){ oggpack_write(opb,info->begin,24); oggpack_write(opb,info->end,24); - oggpack_write(opb,info->grouping-1,24); /* residue vectors to group and - code with a partitioned book */ + oggpack_write(opb,info->grouping-1,24); /* residue vectors to group and + code with a partitioned book */ oggpack_write(opb,info->partitions-1,6); /* possible partition choices */ oggpack_write(opb,info->groupbook,8); /* group huffman book */ @@ -143,11 +173,11 @@ void res0_pack(vorbis_info_residue *vr,oggpack_buffer *opb){ bitmask of one indicates this partition class has bits to write this pass */ for(j=0;jpartitions;j++){ - if(ilog(info->secondstages[j])>3){ + if(ov_ilog(info->secondstages[j])>3){ /* yes, this is a minor hack due to not thinking ahead */ - oggpack_write(opb,info->secondstages[j],3); + oggpack_write(opb,info->secondstages[j],3); oggpack_write(opb,1,1); - oggpack_write(opb,info->secondstages[j]>>3,5); + oggpack_write(opb,info->secondstages[j]>>3,5); }else oggpack_write(opb,info->secondstages[j],4); /* trailing zero */ acc+=icount(info->secondstages[j]); @@ -160,7 +190,7 @@ void res0_pack(vorbis_info_residue *vr,oggpack_buffer *opb){ /* vorbis_info is for range checking */ vorbis_info_residue *res0_unpack(vorbis_info *vi,oggpack_buffer *opb){ int j,acc=0; - vorbis_info_residue0 *info=_ogg_calloc(1,sizeof(vorbis_info_residue0)); + vorbis_info_residue0 *info=_ogg_calloc(1,sizeof(*info)); codec_setup_info *ci=vi->codec_setup; info->begin=oggpack_read(opb,24); @@ -169,20 +199,52 @@ vorbis_info_residue *res0_unpack(vorbis_info *vi,oggpack_buffer *opb){ info->partitions=oggpack_read(opb,6)+1; info->groupbook=oggpack_read(opb,8); + /* check for premature EOP */ + if(info->groupbook<0)goto errout; + for(j=0;jpartitions;j++){ int cascade=oggpack_read(opb,3); - if(oggpack_read(opb,1)) - cascade|=(oggpack_read(opb,5)<<3); + int cflag=oggpack_read(opb,1); + if(cflag<0) goto errout; + if(cflag){ + int c=oggpack_read(opb,5); + if(c<0) goto errout; + cascade|=(c<<3); + } info->secondstages[j]=cascade; acc+=icount(cascade); } - for(j=0;jbooklist[j]=oggpack_read(opb,8); + for(j=0;jbooklist[j]=book; + } if(info->groupbook>=ci->books)goto errout; - for(j=0;jbooklist[j]>=ci->books)goto errout; + if(ci->book_param[info->booklist[j]]->maptype==0)goto errout; + } + + /* verify the phrasebook is not specifying an impossible or + inconsistent partitioning scheme. */ + /* modify the phrasebook ranging check from r16327; an early beta + encoder had a bug where it used an oversized phrasebook by + accident. These files should continue to be playable, but don't + allow an exploit */ + { + int entries = ci->book_param[info->groupbook]->entries; + int dim = ci->book_param[info->groupbook]->dim; + int partvals = 1; + if (dim<1) goto errout; + while(dim>0){ + partvals *= info->partitions; + if(partvals > entries) goto errout; + dim--; + } + info->partvals = partvals; + } return(info); errout: @@ -190,43 +252,50 @@ vorbis_info_residue *res0_unpack(vorbis_info *vi,oggpack_buffer *opb){ return(NULL); } -vorbis_look_residue *res0_look (vorbis_dsp_state *vd,vorbis_info_mode *vm, - vorbis_info_residue *vr){ +vorbis_look_residue *res0_look(vorbis_dsp_state *vd, + vorbis_info_residue *vr){ vorbis_info_residue0 *info=(vorbis_info_residue0 *)vr; - vorbis_look_residue0 *look=_ogg_calloc(1,sizeof(vorbis_look_residue0)); - backend_lookup_state *be=vd->backend_state; + vorbis_look_residue0 *look=_ogg_calloc(1,sizeof(*look)); + codec_setup_info *ci=vd->vi->codec_setup; int j,k,acc=0; int dim; int maxstage=0; look->info=info; - look->map=vm->mapping; look->parts=info->partitions; - look->fullbooks=be->fullbooks; - look->phrasebook=be->fullbooks+info->groupbook; + look->fullbooks=ci->fullbooks; + look->phrasebook=ci->fullbooks+info->groupbook; dim=look->phrasebook->dim; - look->partbooks=_ogg_calloc(look->parts,sizeof(codebook **)); + look->partbooks=_ogg_calloc(look->parts,sizeof(*look->partbooks)); for(j=0;jparts;j++){ - int stages=ilog(info->secondstages[j]); + int stages=ov_ilog(info->secondstages[j]); if(stages){ if(stages>maxstage)maxstage=stages; - look->partbooks[j]=_ogg_calloc(stages,sizeof(codebook *)); + look->partbooks[j]=_ogg_calloc(stages,sizeof(*look->partbooks[j])); for(k=0;ksecondstages[j]&(1<partbooks[j][k]=be->fullbooks+info->booklist[acc++]; + if(info->secondstages[j]&(1<partbooks[j][k]=ci->fullbooks+info->booklist[acc++]; +#ifdef TRAIN_RES + look->training_data[k][j]=_ogg_calloc(look->partbooks[j][k]->entries, + sizeof(***look->training_data)); +#endif + } } } - look->partvals=rint(pow(look->parts,dim)); + look->partvals=1; + for(j=0;jpartvals*=look->parts; + look->stages=maxstage; - look->decodemap=_ogg_malloc(look->partvals*sizeof(int *)); + look->decodemap=_ogg_malloc(look->partvals*sizeof(*look->decodemap)); for(j=0;jpartvals;j++){ long val=j; long mult=look->partvals/look->parts; - look->decodemap[j]=_ogg_malloc(dim*sizeof(int)); + look->decodemap[j]=_ogg_malloc(dim*sizeof(*look->decodemap[j])); for(k=0;kdecodemap[j][k]=deco; } } - +#if defined(TRAIN_RES) || defined (TRAIN_RESAUX) + { + static int train_seq=0; + look->train_seq=train_seq++; + } +#endif return(look); } - -/* does not guard against invalid settings; eg, a subn of 16 and a - subgroup request of 32. Max subn of 128 */ -static int _interleaved_testhack(float *vec,int n,vorbis_look_residue0 *look, - int auxparts,int auxpartnum){ - vorbis_info_residue0 *info=look->info; - int i,j=0; - float max,localmax=0.f; - float temp[128]; - float entropy[8]; - - /* setup */ - for(i=0;ilocalmax)localmax=temp[i]; - max=localmax; - - for(i=0;i>=1; - if(!n)break; - j++; - - for(i=0;idim; + int i,j,o; + int minval=book->minval; + int del=book->delta; + int qv=book->quantvals; + int ze=(qv>>1); + int index=0; + /* assumes integer/centered encoder codebook maptype 1 no more than dim 8 */ + int p[8]={0,0,0,0,0,0,0,0}; + + if(del!=1){ + for(i=0,o=dim;i>1))/del; + int m = (v=qv?qv-1:m)); + p[o]=v*del+minval; + } + }else{ + for(i=0,o=dim;i=qv?qv-1:m)); + p[o]=v*del+minval; } - localmax=0.f; - for(i=0;ilocalmax)localmax=temp[i]; } - for(i=0;iblimit[i] && - entropy[info->subgrp[i]]<=info->entmax[i] && - max<=info->ampmax[i]) - break; - - return(i); -} - -static int _testhack(float *vec,int n,vorbis_look_residue0 *look, - int auxparts,int auxpartnum){ - vorbis_info_residue0 *info=look->info; - int i; - float max=0.f; - float temp[128]; - float entropy=0.f; - - /* setup */ - for(i=0;imax)max=temp[i]; - - for(i=0;ic->lengthlist[index]<=0){ + const static_codebook *c=book->c; + int best=-1; + /* assumes integer/centered encoder codebook maptype 1 no more than dim 8 */ + int e[8]={0,0,0,0,0,0,0,0}; + int maxval = book->minval + book->delta*(book->quantvals-1); + for(i=0;ientries;i++){ + if(c->lengthlist[i]>0){ + int this=0; + for(j=0;j=maxval) + e[j++]=0; + if(e[j]>=0) + e[j]+=book->delta; + e[j]= -e[j]; + } + } - for(i=0;iblimit[i] && - entropy<=info->entmax[i] && - max<=info->ampmax[i]) - break; + if(index>-1){ + for(i=0;idim; - int step=n/dim; -#ifdef TRAIN_RESENT - char buf[80]; - FILE *f; - sprintf(buf,"res0_b%d.vqd",book-look->fullbooks); - f=fopen(buf,"a"); -#endif - - for(i=0;idim; int step=n/dim; -#ifdef TRAIN_RESENT - char buf[80]; - FILE *f; - sprintf(buf,"res0_b%d.vqd",book-look->fullbooks); - f=fopen(buf,"a"); -#endif for(i=0;i=0) + acc[entry]++; #endif bits+=vorbis_book_encode(book,entry,opb); + } -#ifdef TRAIN_RESENT - fclose(f); -#endif return(bits); } static long **_01class(vorbis_block *vb,vorbis_look_residue *vl, - float **in,int ch, - int (*classify)(float *,int,vorbis_look_residue0 *, - int,int)){ - long i,j; + int **in,int ch){ + long i,j,k; vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl; vorbis_info_residue0 *info=look->info; @@ -380,37 +415,48 @@ static long **_01class(vorbis_block *vb,vorbis_look_residue *vl, int n=info->end-info->begin; int partvals=n/samples_per_partition; - long **partword=_vorbis_block_alloc(vb,ch*sizeof(long *)); + long **partword=_vorbis_block_alloc(vb,ch*sizeof(*partword)); + float scale=100./samples_per_partition; /* we find the partition type for each partition of each channel. We'll go back and do the interleaved encoding in a bit. For now, clarity */ - + for(i=0;ibegin, - samples_per_partition,look,possible_partitions,i); - + int offset=i*samples_per_partition+info->begin; + for(j=0;jmax)max=abs(in[j][offset+k]); + ent+=abs(in[j][offset+k]); + } + ent*=scale; + + for(k=0;kclassmetric1[k] && + (info->classmetric2[k]<0 || entclassmetric2[k])) + break; + + partword[j][i]=k; + } } -#ifdef TRAIN_RES +#ifdef TRAIN_RESAUX { FILE *of; char buffer[80]; - + for(i=0;imode); + sprintf(buffer,"resaux_%d.vqd",look->train_seq); of=fopen(buffer,"a"); for(j=0;jinfo; @@ -435,52 +482,70 @@ static long **_2class(vorbis_block *vb,vorbis_look_residue *vl, int n=info->end-info->begin; int partvals=n/samples_per_partition; - long **partword=_vorbis_block_alloc(vb,sizeof(long *)); - float *work=alloca(sizeof(float)*samples_per_partition); - - partword[0]=_vorbis_block_alloc(vb,n*ch/samples_per_partition*sizeof(long)); - memset(partword[0],0,n*ch/samples_per_partition*sizeof(long)); - - for(i=0,j=0,k=0,l=info->begin;i=ch){ - j=0; - l++; - } + long **partword=_vorbis_block_alloc(vb,sizeof(*partword)); + +#if defined(TRAIN_RES) || defined (TRAIN_RESAUX) + FILE *of; + char buffer[80]; +#endif + + partword[0]=_vorbis_block_alloc(vb,partvals*sizeof(*partword[0])); + memset(partword[0],0,partvals*sizeof(*partword[0])); + + for(i=0,l=info->begin/ch;imagmax)magmax=abs(in[0][l]); + for(k=1;kangmax)angmax=abs(in[k][l]); + l++; } - partword[0][i]= - classify(work,samples_per_partition,look,possible_partitions,i); - } -#ifdef TRAIN_RES - { - FILE *of; - char buffer[80]; - - sprintf(buffer,"resaux_%d.vqd",vb->mode); - of=fopen(buffer,"a"); - for(i=0;iclassmetric1[j] && + angmax<=info->classmetric2[j]) + break; + + partword[0][i]=j; + } + +#ifdef TRAIN_RESAUX + sprintf(buffer,"resaux_%d.vqd",look->train_seq); + of=fopen(buffer,"a"); + for(i=0;iframes++; return(partword); } -static int _01forward(vorbis_block *vb,vorbis_look_residue *vl, - float **in,int ch, - int pass,long **partword, - int (*encode)(oggpack_buffer *,float *,int, - codebook *,vorbis_look_residue0 *)){ +static int _01forward(oggpack_buffer *opb, + vorbis_look_residue *vl, + int **in,int ch, + long **partword, +#ifdef TRAIN_RES + int (*encode)(oggpack_buffer *,int *,int, + codebook *,long *), + int submap +#else + int (*encode)(oggpack_buffer *,int *,int, + codebook *) +#endif +){ long i,j,k,s; vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl; vorbis_info_residue0 *info=look->info; +#ifdef TRAIN_RES + look->submap=submap; +#endif + /* move all this setup out later */ int samples_per_partition=info->grouping; int possible_partitions=info->partitions; @@ -492,93 +557,93 @@ static int _01forward(vorbis_block *vb,vorbis_look_residue *vl, long resvals[128]; #ifdef TRAIN_RES - FILE *of; - char buffer[80]; - int m; - - for(i=0;imode,pass); - of=fopen(buffer,"a"); - for(m=0;mend;m++) - fprintf(of,"%.2f, ",in[i][m]); - fprintf(of,"\n"); - fclose(of); - } -#endif + for(i=0;ibegin;jend;j++){ + if(in[i][j]>look->tmax)look->tmax=in[i][j]; + if(in[i][j]tmin)look->tmin=in[i][j]; + } +#endif memset(resbits,0,sizeof(resbits)); memset(resvals,0,sizeof(resvals)); - + /* we code the partition words for each channel, then the residual words for a partition per channel until we've written all the residual words for that partition word. Then write the next partition channel words... */ - for(s=(pass==0?0:info->passlimit[pass-1]);spasslimit[pass];s++){ + for(s=0;sstages;s++){ + for(i=0;iphrasebook->entries) - ret=vorbis_book_encode(look->phrasebook,val,&vb->opb); - else - fprintf(stderr,"!"); - - look->phrasebits+=ret; - - } + for(j=0;jphrasebook->entries) + look->phrasebits+=vorbis_book_encode(look->phrasebook,val,opb); +#if 0 /*def TRAIN_RES*/ + else + fprintf(stderr,"!"); +#endif + + } } - + /* now we encode interleaved residual values for the partitions */ for(k=0;kbegin; - - for(j=0;jsecondstages[partword[j][i]]&(1<partbooks[partword[j][i]][s]; - if(statebook){ - int ret=encode(&vb->opb,in[j]+offset,samples_per_partition, - statebook,look); - look->postbits+=ret; - resbits[partword[j][i]]+=ret; - } - } - } + long offset=i*samples_per_partition+info->begin; + + for(j=0;jsecondstages[partword[j][i]]&(1<partbooks[partword[j][i]][s]; + if(statebook){ + int ret; +#ifdef TRAIN_RES + long *accumulator=NULL; + accumulator=look->training_data[s][partword[j][i]]; + { + int l; + int *samples=in[j]+offset; + for(l=0;ltraining_min[s][partword[j][i]]) + look->training_min[s][partword[j][i]]=samples[l]; + if(samples[l]>look->training_max[s][partword[j][i]]) + look->training_max[s][partword[j][i]]=samples[l]; + } + } + ret=encode(opb,in[j]+offset,samples_per_partition, + statebook,accumulator); +#else + ret=encode(opb,in[j]+offset,samples_per_partition, + statebook); +#endif + + look->postbits+=ret; + resbits[partword[j][i]]+=ret; + } + } + } } } } - /*{ - long total=0; - long totalbits=0; - fprintf(stderr,"%d :: ",vb->mode); - for(k=0;kgrouping; int partitions_per_word=look->phrasebook->dim; - int n=info->end-info->begin; - - int partvals=n/samples_per_partition; - int partwords=(partvals+partitions_per_word-1)/partitions_per_word; - int ***partword=alloca(ch*sizeof(int **)); - - for(j=0;jpcmend>>1; + int end=(info->endend:max); + int n=end-info->begin; - for(s=0;sstages;s++){ + if(n>0){ + int partvals=n/samples_per_partition; + int partwords=(partvals+partitions_per_word-1)/partitions_per_word; + int ***partword=alloca(ch*sizeof(*partword)); - /* each loop decodes on partition codeword containing - partitions_pre_word partitions */ - for(i=0,l=0;iphrasebook,&vb->opb); - if(temp==-1)goto eopbreak; - partword[j][l]=look->decodemap[temp]; - if(partword[j][l]==NULL)goto errout; - } + for(j=0;jstages;s++){ + + /* each loop decodes on partition codeword containing + partitions_per_word partitions */ + for(i=0,l=0;iphrasebook,&vb->opb); + + if(temp==-1 || temp>=info->partvals)goto eopbreak; + partword[j][l]=look->decodemap[temp]; + if(partword[j][l]==NULL)goto errout; + } + } + + /* now we decode residual values for the partitions */ + for(k=0;kbegin+i*samples_per_partition; + if(info->secondstages[partword[j][l][k]]&(1<partbooks[partword[j][l][k]][s]; + if(stagebook){ + if(decodepart(stagebook,in[j]+offset,&vb->opb, + samples_per_partition)==-1)goto eopbreak; + } + } + } } - - /* now we decode residual values for the partitions */ - for(k=0;kbegin+i*samples_per_partition; - if(info->secondstages[partword[j][l][k]]&(1<partbooks[partword[j][l][k]][s]; - if(stagebook){ - if(decodepart(stagebook,in[j]+offset,&vb->opb, - samples_per_partition)==-1)goto eopbreak; - } - } - } - } + } } - errout: eopbreak: return(0); } -/* residue 0 and 1 are just slight variants of one another. 0 is - interleaved, 1 is not */ -long **res0_class(vorbis_block *vb,vorbis_look_residue *vl, - float **in,int *nonzero,int ch){ - /* we encode only the nonzero parts of a bundle */ - int i,used=0; - for(i=0;ipcmend/2; - for(i=0;ipcmend/2; +int res1_forward(oggpack_buffer *opb,vorbis_block *vb,vorbis_look_residue *vl, + int **in,int *nonzero,int ch, long **partword, int submap){ + int i,used=0; + (void)vb; for(i=0;ipcmend/2,used=0; /* don't duplicate the code; use a working vector hack for now and reshape ourselves into a single channel res1 */ /* ugly; reallocs for each coupling pass :-( */ - float *work=_vorbis_block_alloc(vb,ch*n*sizeof(float)); + int *work=_vorbis_block_alloc(vb,ch*n*sizeof(*work)); for(i=0;iinfo; @@ -790,64 +808,65 @@ int res2_inverse(vorbis_block *vb,vorbis_look_residue *vl, /* move all this setup out later */ int samples_per_partition=info->grouping; int partitions_per_word=look->phrasebook->dim; - int n=info->end-info->begin; - - int partvals=n/samples_per_partition; - int partwords=(partvals+partitions_per_word-1)/partitions_per_word; - int **partword=_vorbis_block_alloc(vb,partwords*sizeof(int *)); - - for(i=0;istages;s++){ - for(i=0,l=0;iphrasebook,&vb->opb); - if(temp==-1)goto eopbreak; - partword[l]=look->decodemap[temp]; - if(partword[l]==NULL)goto errout; + int max=(vb->pcmend*ch)>>1; + int end=(info->endend:max); + int n=end-info->begin; + + if(n>0){ + int partvals=n/samples_per_partition; + int partwords=(partvals+partitions_per_word-1)/partitions_per_word; + int **partword=_vorbis_block_alloc(vb,partwords*sizeof(*partword)); + + for(i=0;istages;s++){ + for(i=0,l=0;iphrasebook,&vb->opb); + if(temp==-1 || temp>=info->partvals)goto eopbreak; + partword[l]=look->decodemap[temp]; + if(partword[l]==NULL)goto errout; + } + + /* now we decode residual values for the partitions */ + for(k=0;ksecondstages[partword[l][k]]&(1<partbooks[partword[l][k]][s]; + + if(stagebook){ + if(vorbis_book_decodevv_add(stagebook,in, + i*samples_per_partition+info->begin,ch, + &vb->opb,samples_per_partition)==-1) + goto eopbreak; + } + } } - - /* now we decode residual values for the partitions */ - for(k=0;ksecondstages[partword[l][k]]&(1<partbooks[partword[l][k]][s]; - - if(stagebook){ - if(vorbis_book_decodevv_add(stagebook,in, - i*samples_per_partition+info->begin,ch, - &vb->opb,samples_per_partition)==-1) - goto eopbreak; - } - } - } + } } - errout: eopbreak: return(0); } -vorbis_func_residue residue0_exportbundle={ - &res0_pack, +const vorbis_func_residue residue0_exportbundle={ + NULL, &res0_unpack, &res0_look, - &res0_copy_info, &res0_free_info, &res0_free_look, - &res0_class, - &res0_forward, + NULL, + NULL, &res0_inverse }; -vorbis_func_residue residue1_exportbundle={ +const vorbis_func_residue residue1_exportbundle={ &res0_pack, &res0_unpack, &res0_look, - &res0_copy_info, &res0_free_info, &res0_free_look, &res1_class, @@ -855,11 +874,10 @@ vorbis_func_residue residue1_exportbundle={ &res1_inverse }; -vorbis_func_residue residue2_exportbundle={ +const vorbis_func_residue residue2_exportbundle={ &res0_pack, &res0_unpack, &res0_look, - &res0_copy_info, &res0_free_info, &res0_free_look, &res2_class,