nuclear@1: /******************************************************************** nuclear@1: * * nuclear@1: * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * nuclear@1: * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * nuclear@1: * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * nuclear@1: * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * nuclear@1: * * nuclear@1: * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2010 * nuclear@1: * by the Xiph.Org Foundation http://www.xiph.org/ * nuclear@1: * * nuclear@1: ******************************************************************** nuclear@1: nuclear@1: function: channel mapping 0 implementation nuclear@1: last mod: $Id: mapping0.c 17022 2010-03-25 03:45:42Z xiphmont $ nuclear@1: nuclear@1: ********************************************************************/ nuclear@1: nuclear@1: #include nuclear@1: #include nuclear@1: #include nuclear@1: #include nuclear@1: #include nuclear@1: #include "vorbis/codec.h" nuclear@1: #include "codec_internal.h" nuclear@1: #include "codebook.h" nuclear@1: #include "window.h" nuclear@1: #include "registry.h" nuclear@1: #include "psy.h" nuclear@1: #include "misc.h" nuclear@1: nuclear@1: /* simplistic, wasteful way of doing this (unique lookup for each nuclear@1: mode/submapping); there should be a central repository for nuclear@1: identical lookups. That will require minor work, so I'm putting it nuclear@1: off as low priority. nuclear@1: nuclear@1: Why a lookup for each backend in a given mode? Because the nuclear@1: blocksize is set by the mode, and low backend lookups may require nuclear@1: parameters from other areas of the mode/mapping */ nuclear@1: nuclear@1: static void mapping0_free_info(vorbis_info_mapping *i){ nuclear@1: vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)i; nuclear@1: if(info){ nuclear@1: memset(info,0,sizeof(*info)); nuclear@1: _ogg_free(info); nuclear@1: } nuclear@1: } nuclear@1: nuclear@1: static int ilog(unsigned int v){ nuclear@1: int ret=0; nuclear@1: if(v)--v; nuclear@1: while(v){ nuclear@1: ret++; nuclear@1: v>>=1; nuclear@1: } nuclear@1: return(ret); nuclear@1: } nuclear@1: nuclear@1: static void mapping0_pack(vorbis_info *vi,vorbis_info_mapping *vm, nuclear@1: oggpack_buffer *opb){ nuclear@1: int i; nuclear@1: vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)vm; nuclear@1: nuclear@1: /* another 'we meant to do it this way' hack... up to beta 4, we nuclear@1: packed 4 binary zeros here to signify one submapping in use. We nuclear@1: now redefine that to mean four bitflags that indicate use of nuclear@1: deeper features; bit0:submappings, bit1:coupling, nuclear@1: bit2,3:reserved. This is backward compatable with all actual uses nuclear@1: of the beta code. */ nuclear@1: nuclear@1: if(info->submaps>1){ nuclear@1: oggpack_write(opb,1,1); nuclear@1: oggpack_write(opb,info->submaps-1,4); nuclear@1: }else nuclear@1: oggpack_write(opb,0,1); nuclear@1: nuclear@1: if(info->coupling_steps>0){ nuclear@1: oggpack_write(opb,1,1); nuclear@1: oggpack_write(opb,info->coupling_steps-1,8); nuclear@1: nuclear@1: for(i=0;icoupling_steps;i++){ nuclear@1: oggpack_write(opb,info->coupling_mag[i],ilog(vi->channels)); nuclear@1: oggpack_write(opb,info->coupling_ang[i],ilog(vi->channels)); nuclear@1: } nuclear@1: }else nuclear@1: oggpack_write(opb,0,1); nuclear@1: nuclear@1: oggpack_write(opb,0,2); /* 2,3:reserved */ nuclear@1: nuclear@1: /* we don't write the channel submappings if we only have one... */ nuclear@1: if(info->submaps>1){ nuclear@1: for(i=0;ichannels;i++) nuclear@1: oggpack_write(opb,info->chmuxlist[i],4); nuclear@1: } nuclear@1: for(i=0;isubmaps;i++){ nuclear@1: oggpack_write(opb,0,8); /* time submap unused */ nuclear@1: oggpack_write(opb,info->floorsubmap[i],8); nuclear@1: oggpack_write(opb,info->residuesubmap[i],8); nuclear@1: } nuclear@1: } nuclear@1: nuclear@1: /* also responsible for range checking */ nuclear@1: static vorbis_info_mapping *mapping0_unpack(vorbis_info *vi,oggpack_buffer *opb){ nuclear@1: int i,b; nuclear@1: vorbis_info_mapping0 *info=_ogg_calloc(1,sizeof(*info)); nuclear@1: codec_setup_info *ci=vi->codec_setup; nuclear@1: memset(info,0,sizeof(*info)); nuclear@1: nuclear@1: b=oggpack_read(opb,1); nuclear@1: if(b<0)goto err_out; nuclear@1: if(b){ nuclear@1: info->submaps=oggpack_read(opb,4)+1; nuclear@1: if(info->submaps<=0)goto err_out; nuclear@1: }else nuclear@1: info->submaps=1; nuclear@1: nuclear@1: b=oggpack_read(opb,1); nuclear@1: if(b<0)goto err_out; nuclear@1: if(b){ nuclear@1: info->coupling_steps=oggpack_read(opb,8)+1; nuclear@1: if(info->coupling_steps<=0)goto err_out; nuclear@1: for(i=0;icoupling_steps;i++){ nuclear@1: int testM=info->coupling_mag[i]=oggpack_read(opb,ilog(vi->channels)); nuclear@1: int testA=info->coupling_ang[i]=oggpack_read(opb,ilog(vi->channels)); nuclear@1: nuclear@1: if(testM<0 || nuclear@1: testA<0 || nuclear@1: testM==testA || nuclear@1: testM>=vi->channels || nuclear@1: testA>=vi->channels) goto err_out; nuclear@1: } nuclear@1: nuclear@1: } nuclear@1: nuclear@1: if(oggpack_read(opb,2)!=0)goto err_out; /* 2,3:reserved */ nuclear@1: nuclear@1: if(info->submaps>1){ nuclear@1: for(i=0;ichannels;i++){ nuclear@1: info->chmuxlist[i]=oggpack_read(opb,4); nuclear@1: if(info->chmuxlist[i]>=info->submaps || info->chmuxlist[i]<0)goto err_out; nuclear@1: } nuclear@1: } nuclear@1: for(i=0;isubmaps;i++){ nuclear@1: oggpack_read(opb,8); /* time submap unused */ nuclear@1: info->floorsubmap[i]=oggpack_read(opb,8); nuclear@1: if(info->floorsubmap[i]>=ci->floors || info->floorsubmap[i]<0)goto err_out; nuclear@1: info->residuesubmap[i]=oggpack_read(opb,8); nuclear@1: if(info->residuesubmap[i]>=ci->residues || info->residuesubmap[i]<0)goto err_out; nuclear@1: } nuclear@1: nuclear@1: return info; nuclear@1: nuclear@1: err_out: nuclear@1: mapping0_free_info(info); nuclear@1: return(NULL); nuclear@1: } nuclear@1: nuclear@1: #include "os.h" nuclear@1: #include "lpc.h" nuclear@1: #include "lsp.h" nuclear@1: #include "envelope.h" nuclear@1: #include "mdct.h" nuclear@1: #include "psy.h" nuclear@1: #include "scales.h" nuclear@1: nuclear@1: #if 0 nuclear@1: static long seq=0; nuclear@1: static ogg_int64_t total=0; nuclear@1: static float FLOOR1_fromdB_LOOKUP[256]={ nuclear@1: 1.0649863e-07F, 1.1341951e-07F, 1.2079015e-07F, 1.2863978e-07F, nuclear@1: 1.3699951e-07F, 1.4590251e-07F, 1.5538408e-07F, 1.6548181e-07F, nuclear@1: 1.7623575e-07F, 1.8768855e-07F, 1.9988561e-07F, 2.128753e-07F, nuclear@1: 2.2670913e-07F, 2.4144197e-07F, 2.5713223e-07F, 2.7384213e-07F, nuclear@1: 2.9163793e-07F, 3.1059021e-07F, 3.3077411e-07F, 3.5226968e-07F, nuclear@1: 3.7516214e-07F, 3.9954229e-07F, 4.2550680e-07F, 4.5315863e-07F, nuclear@1: 4.8260743e-07F, 5.1396998e-07F, 5.4737065e-07F, 5.8294187e-07F, nuclear@1: 6.2082472e-07F, 6.6116941e-07F, 7.0413592e-07F, 7.4989464e-07F, nuclear@1: 7.9862701e-07F, 8.5052630e-07F, 9.0579828e-07F, 9.6466216e-07F, nuclear@1: 1.0273513e-06F, 1.0941144e-06F, 1.1652161e-06F, 1.2409384e-06F, nuclear@1: 1.3215816e-06F, 1.4074654e-06F, 1.4989305e-06F, 1.5963394e-06F, nuclear@1: 1.7000785e-06F, 1.8105592e-06F, 1.9282195e-06F, 2.0535261e-06F, nuclear@1: 2.1869758e-06F, 2.3290978e-06F, 2.4804557e-06F, 2.6416497e-06F, nuclear@1: 2.8133190e-06F, 2.9961443e-06F, 3.1908506e-06F, 3.3982101e-06F, nuclear@1: 3.6190449e-06F, 3.8542308e-06F, 4.1047004e-06F, 4.3714470e-06F, nuclear@1: 4.6555282e-06F, 4.9580707e-06F, 5.2802740e-06F, 5.6234160e-06F, nuclear@1: 5.9888572e-06F, 6.3780469e-06F, 6.7925283e-06F, 7.2339451e-06F, nuclear@1: 7.7040476e-06F, 8.2047000e-06F, 8.7378876e-06F, 9.3057248e-06F, nuclear@1: 9.9104632e-06F, 1.0554501e-05F, 1.1240392e-05F, 1.1970856e-05F, nuclear@1: 1.2748789e-05F, 1.3577278e-05F, 1.4459606e-05F, 1.5399272e-05F, nuclear@1: 1.6400004e-05F, 1.7465768e-05F, 1.8600792e-05F, 1.9809576e-05F, nuclear@1: 2.1096914e-05F, 2.2467911e-05F, 2.3928002e-05F, 2.5482978e-05F, nuclear@1: 2.7139006e-05F, 2.8902651e-05F, 3.0780908e-05F, 3.2781225e-05F, nuclear@1: 3.4911534e-05F, 3.7180282e-05F, 3.9596466e-05F, 4.2169667e-05F, nuclear@1: 4.4910090e-05F, 4.7828601e-05F, 5.0936773e-05F, 5.4246931e-05F, nuclear@1: 5.7772202e-05F, 6.1526565e-05F, 6.5524908e-05F, 6.9783085e-05F, nuclear@1: 7.4317983e-05F, 7.9147585e-05F, 8.4291040e-05F, 8.9768747e-05F, nuclear@1: 9.5602426e-05F, 0.00010181521F, 0.00010843174F, 0.00011547824F, nuclear@1: 0.00012298267F, 0.00013097477F, 0.00013948625F, 0.00014855085F, nuclear@1: 0.00015820453F, 0.00016848555F, 0.00017943469F, 0.00019109536F, nuclear@1: 0.00020351382F, 0.00021673929F, 0.00023082423F, 0.00024582449F, nuclear@1: 0.00026179955F, 0.00027881276F, 0.00029693158F, 0.00031622787F, nuclear@1: 0.00033677814F, 0.00035866388F, 0.00038197188F, 0.00040679456F, nuclear@1: 0.00043323036F, 0.00046138411F, 0.00049136745F, 0.00052329927F, nuclear@1: 0.00055730621F, 0.00059352311F, 0.00063209358F, 0.00067317058F, nuclear@1: 0.00071691700F, 0.00076350630F, 0.00081312324F, 0.00086596457F, nuclear@1: 0.00092223983F, 0.00098217216F, 0.0010459992F, 0.0011139742F, nuclear@1: 0.0011863665F, 0.0012634633F, 0.0013455702F, 0.0014330129F, nuclear@1: 0.0015261382F, 0.0016253153F, 0.0017309374F, 0.0018434235F, nuclear@1: 0.0019632195F, 0.0020908006F, 0.0022266726F, 0.0023713743F, nuclear@1: 0.0025254795F, 0.0026895994F, 0.0028643847F, 0.0030505286F, nuclear@1: 0.0032487691F, 0.0034598925F, 0.0036847358F, 0.0039241906F, nuclear@1: 0.0041792066F, 0.0044507950F, 0.0047400328F, 0.0050480668F, nuclear@1: 0.0053761186F, 0.0057254891F, 0.0060975636F, 0.0064938176F, nuclear@1: 0.0069158225F, 0.0073652516F, 0.0078438871F, 0.0083536271F, nuclear@1: 0.0088964928F, 0.009474637F, 0.010090352F, 0.010746080F, nuclear@1: 0.011444421F, 0.012188144F, 0.012980198F, 0.013823725F, nuclear@1: 0.014722068F, 0.015678791F, 0.016697687F, 0.017782797F, nuclear@1: 0.018938423F, 0.020169149F, 0.021479854F, 0.022875735F, nuclear@1: 0.024362330F, 0.025945531F, 0.027631618F, 0.029427276F, nuclear@1: 0.031339626F, 0.033376252F, 0.035545228F, 0.037855157F, nuclear@1: 0.040315199F, 0.042935108F, 0.045725273F, 0.048696758F, nuclear@1: 0.051861348F, 0.055231591F, 0.058820850F, 0.062643361F, nuclear@1: 0.066714279F, 0.071049749F, 0.075666962F, 0.080584227F, nuclear@1: 0.085821044F, 0.091398179F, 0.097337747F, 0.10366330F, nuclear@1: 0.11039993F, 0.11757434F, 0.12521498F, 0.13335215F, nuclear@1: 0.14201813F, 0.15124727F, 0.16107617F, 0.17154380F, nuclear@1: 0.18269168F, 0.19456402F, 0.20720788F, 0.22067342F, nuclear@1: 0.23501402F, 0.25028656F, 0.26655159F, 0.28387361F, nuclear@1: 0.30232132F, 0.32196786F, 0.34289114F, 0.36517414F, nuclear@1: 0.38890521F, 0.41417847F, 0.44109412F, 0.46975890F, nuclear@1: 0.50028648F, 0.53279791F, 0.56742212F, 0.60429640F, nuclear@1: 0.64356699F, 0.68538959F, 0.72993007F, 0.77736504F, nuclear@1: 0.82788260F, 0.88168307F, 0.9389798F, 1.F, nuclear@1: }; nuclear@1: nuclear@1: #endif nuclear@1: nuclear@1: nuclear@1: static int mapping0_forward(vorbis_block *vb){ nuclear@1: vorbis_dsp_state *vd=vb->vd; nuclear@1: vorbis_info *vi=vd->vi; nuclear@1: codec_setup_info *ci=vi->codec_setup; nuclear@1: private_state *b=vb->vd->backend_state; nuclear@1: vorbis_block_internal *vbi=(vorbis_block_internal *)vb->internal; nuclear@1: int n=vb->pcmend; nuclear@1: int i,j,k; nuclear@1: nuclear@1: int *nonzero = alloca(sizeof(*nonzero)*vi->channels); nuclear@1: float **gmdct = _vorbis_block_alloc(vb,vi->channels*sizeof(*gmdct)); nuclear@1: int **iwork = _vorbis_block_alloc(vb,vi->channels*sizeof(*iwork)); nuclear@1: int ***floor_posts = _vorbis_block_alloc(vb,vi->channels*sizeof(*floor_posts)); nuclear@1: nuclear@1: float global_ampmax=vbi->ampmax; nuclear@1: float *local_ampmax=alloca(sizeof(*local_ampmax)*vi->channels); nuclear@1: int blocktype=vbi->blocktype; nuclear@1: nuclear@1: int modenumber=vb->W; nuclear@1: vorbis_info_mapping0 *info=ci->map_param[modenumber]; nuclear@1: vorbis_look_psy *psy_look=b->psy+blocktype+(vb->W?2:0); nuclear@1: nuclear@1: vb->mode=modenumber; nuclear@1: nuclear@1: for(i=0;ichannels;i++){ nuclear@1: float scale=4.f/n; nuclear@1: float scale_dB; nuclear@1: nuclear@1: float *pcm =vb->pcm[i]; nuclear@1: float *logfft =pcm; nuclear@1: nuclear@1: iwork[i]=_vorbis_block_alloc(vb,n/2*sizeof(**iwork)); nuclear@1: gmdct[i]=_vorbis_block_alloc(vb,n/2*sizeof(**gmdct)); nuclear@1: nuclear@1: scale_dB=todB(&scale) + .345; /* + .345 is a hack; the original nuclear@1: todB estimation used on IEEE 754 nuclear@1: compliant machines had a bug that nuclear@1: returned dB values about a third nuclear@1: of a decibel too high. The bug nuclear@1: was harmless because tunings nuclear@1: implicitly took that into nuclear@1: account. However, fixing the bug nuclear@1: in the estimator requires nuclear@1: changing all the tunings as well. nuclear@1: For now, it's easier to sync nuclear@1: things back up here, and nuclear@1: recalibrate the tunings in the nuclear@1: next major model upgrade. */ nuclear@1: nuclear@1: #if 0 nuclear@1: if(vi->channels==2){ nuclear@1: if(i==0) nuclear@1: _analysis_output("pcmL",seq,pcm,n,0,0,total-n/2); nuclear@1: else nuclear@1: _analysis_output("pcmR",seq,pcm,n,0,0,total-n/2); nuclear@1: }else{ nuclear@1: _analysis_output("pcm",seq,pcm,n,0,0,total-n/2); nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: /* window the PCM data */ nuclear@1: _vorbis_apply_window(pcm,b->window,ci->blocksizes,vb->lW,vb->W,vb->nW); nuclear@1: nuclear@1: #if 0 nuclear@1: if(vi->channels==2){ nuclear@1: if(i==0) nuclear@1: _analysis_output("windowedL",seq,pcm,n,0,0,total-n/2); nuclear@1: else nuclear@1: _analysis_output("windowedR",seq,pcm,n,0,0,total-n/2); nuclear@1: }else{ nuclear@1: _analysis_output("windowed",seq,pcm,n,0,0,total-n/2); nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: /* transform the PCM data */ nuclear@1: /* only MDCT right now.... */ nuclear@1: mdct_forward(b->transform[vb->W][0],pcm,gmdct[i]); nuclear@1: nuclear@1: /* FFT yields more accurate tonal estimation (not phase sensitive) */ nuclear@1: drft_forward(&b->fft_look[vb->W],pcm); nuclear@1: logfft[0]=scale_dB+todB(pcm) + .345; /* + .345 is a hack; the nuclear@1: original todB estimation used on nuclear@1: IEEE 754 compliant machines had a nuclear@1: bug that returned dB values about nuclear@1: a third of a decibel too high. nuclear@1: The bug was harmless because nuclear@1: tunings implicitly took that into nuclear@1: account. However, fixing the bug nuclear@1: in the estimator requires nuclear@1: changing all the tunings as well. nuclear@1: For now, it's easier to sync nuclear@1: things back up here, and nuclear@1: recalibrate the tunings in the nuclear@1: next major model upgrade. */ nuclear@1: local_ampmax[i]=logfft[0]; nuclear@1: for(j=1;j>1]=scale_dB+.5f*todB(&temp) + .345; /* + nuclear@1: .345 is a hack; the original todB nuclear@1: estimation used on IEEE 754 nuclear@1: compliant machines had a bug that nuclear@1: returned dB values about a third nuclear@1: of a decibel too high. The bug nuclear@1: was harmless because tunings nuclear@1: implicitly took that into nuclear@1: account. However, fixing the bug nuclear@1: in the estimator requires nuclear@1: changing all the tunings as well. nuclear@1: For now, it's easier to sync nuclear@1: things back up here, and nuclear@1: recalibrate the tunings in the nuclear@1: next major model upgrade. */ nuclear@1: if(temp>local_ampmax[i])local_ampmax[i]=temp; nuclear@1: } nuclear@1: nuclear@1: if(local_ampmax[i]>0.f)local_ampmax[i]=0.f; nuclear@1: if(local_ampmax[i]>global_ampmax)global_ampmax=local_ampmax[i]; nuclear@1: nuclear@1: #if 0 nuclear@1: if(vi->channels==2){ nuclear@1: if(i==0){ nuclear@1: _analysis_output("fftL",seq,logfft,n/2,1,0,0); nuclear@1: }else{ nuclear@1: _analysis_output("fftR",seq,logfft,n/2,1,0,0); nuclear@1: } nuclear@1: }else{ nuclear@1: _analysis_output("fft",seq,logfft,n/2,1,0,0); nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: } nuclear@1: nuclear@1: { nuclear@1: float *noise = _vorbis_block_alloc(vb,n/2*sizeof(*noise)); nuclear@1: float *tone = _vorbis_block_alloc(vb,n/2*sizeof(*tone)); nuclear@1: nuclear@1: for(i=0;ichannels;i++){ nuclear@1: /* the encoder setup assumes that all the modes used by any nuclear@1: specific bitrate tweaking use the same floor */ nuclear@1: nuclear@1: int submap=info->chmuxlist[i]; nuclear@1: nuclear@1: /* the following makes things clearer to *me* anyway */ nuclear@1: float *mdct =gmdct[i]; nuclear@1: float *logfft =vb->pcm[i]; nuclear@1: nuclear@1: float *logmdct =logfft+n/2; nuclear@1: float *logmask =logfft; nuclear@1: nuclear@1: vb->mode=modenumber; nuclear@1: nuclear@1: floor_posts[i]=_vorbis_block_alloc(vb,PACKETBLOBS*sizeof(**floor_posts)); nuclear@1: memset(floor_posts[i],0,sizeof(**floor_posts)*PACKETBLOBS); nuclear@1: nuclear@1: for(j=0;jchannels==2){ nuclear@1: if(i==0) nuclear@1: _analysis_output("mdctL",seq,logmdct,n/2,1,0,0); nuclear@1: else nuclear@1: _analysis_output("mdctR",seq,logmdct,n/2,1,0,0); nuclear@1: }else{ nuclear@1: _analysis_output("mdct",seq,logmdct,n/2,1,0,0); nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: /* first step; noise masking. Not only does 'noise masking' nuclear@1: give us curves from which we can decide how much resolution nuclear@1: to give noise parts of the spectrum, it also implicitly hands nuclear@1: us a tonality estimate (the larger the value in the nuclear@1: 'noise_depth' vector, the more tonal that area is) */ nuclear@1: nuclear@1: _vp_noisemask(psy_look, nuclear@1: logmdct, nuclear@1: noise); /* noise does not have by-frequency offset nuclear@1: bias applied yet */ nuclear@1: #if 0 nuclear@1: if(vi->channels==2){ nuclear@1: if(i==0) nuclear@1: _analysis_output("noiseL",seq,noise,n/2,1,0,0); nuclear@1: else nuclear@1: _analysis_output("noiseR",seq,noise,n/2,1,0,0); nuclear@1: }else{ nuclear@1: _analysis_output("noise",seq,noise,n/2,1,0,0); nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: /* second step: 'all the other crap'; all the stuff that isn't nuclear@1: computed/fit for bitrate management goes in the second psy nuclear@1: vector. This includes tone masking, peak limiting and ATH */ nuclear@1: nuclear@1: _vp_tonemask(psy_look, nuclear@1: logfft, nuclear@1: tone, nuclear@1: global_ampmax, nuclear@1: local_ampmax[i]); nuclear@1: nuclear@1: #if 0 nuclear@1: if(vi->channels==2){ nuclear@1: if(i==0) nuclear@1: _analysis_output("toneL",seq,tone,n/2,1,0,0); nuclear@1: else nuclear@1: _analysis_output("toneR",seq,tone,n/2,1,0,0); nuclear@1: }else{ nuclear@1: _analysis_output("tone",seq,tone,n/2,1,0,0); nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: /* third step; we offset the noise vectors, overlay tone nuclear@1: masking. We then do a floor1-specific line fit. If we're nuclear@1: performing bitrate management, the line fit is performed nuclear@1: multiple times for up/down tweakage on demand. */ nuclear@1: nuclear@1: #if 0 nuclear@1: { nuclear@1: float aotuv[psy_look->n]; nuclear@1: #endif nuclear@1: nuclear@1: _vp_offset_and_mix(psy_look, nuclear@1: noise, nuclear@1: tone, nuclear@1: 1, nuclear@1: logmask, nuclear@1: mdct, nuclear@1: logmdct); nuclear@1: nuclear@1: #if 0 nuclear@1: if(vi->channels==2){ nuclear@1: if(i==0) nuclear@1: _analysis_output("aotuvM1_L",seq,aotuv,psy_look->n,1,1,0); nuclear@1: else nuclear@1: _analysis_output("aotuvM1_R",seq,aotuv,psy_look->n,1,1,0); nuclear@1: }else{ nuclear@1: _analysis_output("aotuvM1",seq,aotuv,psy_look->n,1,1,0); nuclear@1: } nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: nuclear@1: #if 0 nuclear@1: if(vi->channels==2){ nuclear@1: if(i==0) nuclear@1: _analysis_output("mask1L",seq,logmask,n/2,1,0,0); nuclear@1: else nuclear@1: _analysis_output("mask1R",seq,logmask,n/2,1,0,0); nuclear@1: }else{ nuclear@1: _analysis_output("mask1",seq,logmask,n/2,1,0,0); nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: /* this algorithm is hardwired to floor 1 for now; abort out if nuclear@1: we're *not* floor1. This won't happen unless someone has nuclear@1: broken the encode setup lib. Guard it anyway. */ nuclear@1: if(ci->floor_type[info->floorsubmap[submap]]!=1)return(-1); nuclear@1: nuclear@1: floor_posts[i][PACKETBLOBS/2]= nuclear@1: floor1_fit(vb,b->flr[info->floorsubmap[submap]], nuclear@1: logmdct, nuclear@1: logmask); nuclear@1: nuclear@1: /* are we managing bitrate? If so, perform two more fits for nuclear@1: later rate tweaking (fits represent hi/lo) */ nuclear@1: if(vorbis_bitrate_managed(vb) && floor_posts[i][PACKETBLOBS/2]){ nuclear@1: /* higher rate by way of lower noise curve */ nuclear@1: nuclear@1: _vp_offset_and_mix(psy_look, nuclear@1: noise, nuclear@1: tone, nuclear@1: 2, nuclear@1: logmask, nuclear@1: mdct, nuclear@1: logmdct); nuclear@1: nuclear@1: #if 0 nuclear@1: if(vi->channels==2){ nuclear@1: if(i==0) nuclear@1: _analysis_output("mask2L",seq,logmask,n/2,1,0,0); nuclear@1: else nuclear@1: _analysis_output("mask2R",seq,logmask,n/2,1,0,0); nuclear@1: }else{ nuclear@1: _analysis_output("mask2",seq,logmask,n/2,1,0,0); nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: floor_posts[i][PACKETBLOBS-1]= nuclear@1: floor1_fit(vb,b->flr[info->floorsubmap[submap]], nuclear@1: logmdct, nuclear@1: logmask); nuclear@1: nuclear@1: /* lower rate by way of higher noise curve */ nuclear@1: _vp_offset_and_mix(psy_look, nuclear@1: noise, nuclear@1: tone, nuclear@1: 0, nuclear@1: logmask, nuclear@1: mdct, nuclear@1: logmdct); nuclear@1: nuclear@1: #if 0 nuclear@1: if(vi->channels==2){ nuclear@1: if(i==0) nuclear@1: _analysis_output("mask0L",seq,logmask,n/2,1,0,0); nuclear@1: else nuclear@1: _analysis_output("mask0R",seq,logmask,n/2,1,0,0); nuclear@1: }else{ nuclear@1: _analysis_output("mask0",seq,logmask,n/2,1,0,0); nuclear@1: } nuclear@1: #endif nuclear@1: nuclear@1: floor_posts[i][0]= nuclear@1: floor1_fit(vb,b->flr[info->floorsubmap[submap]], nuclear@1: logmdct, nuclear@1: logmask); nuclear@1: nuclear@1: /* we also interpolate a range of intermediate curves for nuclear@1: intermediate rates */ nuclear@1: for(k=1;kflr[info->floorsubmap[submap]], nuclear@1: floor_posts[i][0], nuclear@1: floor_posts[i][PACKETBLOBS/2], nuclear@1: k*65536/(PACKETBLOBS/2)); nuclear@1: for(k=PACKETBLOBS/2+1;kflr[info->floorsubmap[submap]], nuclear@1: floor_posts[i][PACKETBLOBS/2], nuclear@1: floor_posts[i][PACKETBLOBS-1], nuclear@1: (k-PACKETBLOBS/2)*65536/(PACKETBLOBS/2)); nuclear@1: } nuclear@1: } nuclear@1: } nuclear@1: vbi->ampmax=global_ampmax; nuclear@1: nuclear@1: /* nuclear@1: the next phases are performed once for vbr-only and PACKETBLOB nuclear@1: times for bitrate managed modes. nuclear@1: nuclear@1: 1) encode actual mode being used nuclear@1: 2) encode the floor for each channel, compute coded mask curve/res nuclear@1: 3) normalize and couple. nuclear@1: 4) encode residue nuclear@1: 5) save packet bytes to the packetblob vector nuclear@1: nuclear@1: */ nuclear@1: nuclear@1: /* iterate over the many masking curve fits we've created */ nuclear@1: nuclear@1: { nuclear@1: int **couple_bundle=alloca(sizeof(*couple_bundle)*vi->channels); nuclear@1: int *zerobundle=alloca(sizeof(*zerobundle)*vi->channels); nuclear@1: nuclear@1: for(k=(vorbis_bitrate_managed(vb)?0:PACKETBLOBS/2); nuclear@1: k<=(vorbis_bitrate_managed(vb)?PACKETBLOBS-1:PACKETBLOBS/2); nuclear@1: k++){ nuclear@1: oggpack_buffer *opb=vbi->packetblob[k]; nuclear@1: nuclear@1: /* start out our new packet blob with packet type and mode */ nuclear@1: /* Encode the packet type */ nuclear@1: oggpack_write(opb,0,1); nuclear@1: /* Encode the modenumber */ nuclear@1: /* Encode frame mode, pre,post windowsize, then dispatch */ nuclear@1: oggpack_write(opb,modenumber,b->modebits); nuclear@1: if(vb->W){ nuclear@1: oggpack_write(opb,vb->lW,1); nuclear@1: oggpack_write(opb,vb->nW,1); nuclear@1: } nuclear@1: nuclear@1: /* encode floor, compute masking curve, sep out residue */ nuclear@1: for(i=0;ichannels;i++){ nuclear@1: int submap=info->chmuxlist[i]; nuclear@1: int *ilogmask=iwork[i]; nuclear@1: nuclear@1: nonzero[i]=floor1_encode(opb,vb,b->flr[info->floorsubmap[submap]], nuclear@1: floor_posts[i][k], nuclear@1: ilogmask); nuclear@1: #if 0 nuclear@1: { nuclear@1: char buf[80]; nuclear@1: sprintf(buf,"maskI%c%d",i?'R':'L',k); nuclear@1: float work[n/2]; nuclear@1: for(j=0;jpsy_g_param, nuclear@1: psy_look, nuclear@1: info, nuclear@1: gmdct, nuclear@1: iwork, nuclear@1: nonzero, nuclear@1: ci->psy_g_param.sliding_lowpass[vb->W][k], nuclear@1: vi->channels); nuclear@1: nuclear@1: #if 0 nuclear@1: for(i=0;ichannels;i++){ nuclear@1: char buf[80]; nuclear@1: sprintf(buf,"res%c%d",i?'R':'L',k); nuclear@1: float work[n/2]; nuclear@1: for(j=0;jsubmaps;i++){ nuclear@1: int ch_in_bundle=0; nuclear@1: long **classifications; nuclear@1: int resnum=info->residuesubmap[i]; nuclear@1: nuclear@1: for(j=0;jchannels;j++){ nuclear@1: if(info->chmuxlist[j]==i){ nuclear@1: zerobundle[ch_in_bundle]=0; nuclear@1: if(nonzero[j])zerobundle[ch_in_bundle]=1; nuclear@1: couple_bundle[ch_in_bundle++]=iwork[j]; nuclear@1: } nuclear@1: } nuclear@1: nuclear@1: classifications=_residue_P[ci->residue_type[resnum]]-> nuclear@1: class(vb,b->residue[resnum],couple_bundle,zerobundle,ch_in_bundle); nuclear@1: nuclear@1: ch_in_bundle=0; nuclear@1: for(j=0;jchannels;j++) nuclear@1: if(info->chmuxlist[j]==i) nuclear@1: couple_bundle[ch_in_bundle++]=iwork[j]; nuclear@1: nuclear@1: _residue_P[ci->residue_type[resnum]]-> nuclear@1: forward(opb,vb,b->residue[resnum], nuclear@1: couple_bundle,zerobundle,ch_in_bundle,classifications,i); nuclear@1: } nuclear@1: nuclear@1: /* ok, done encoding. Next protopacket. */ nuclear@1: } nuclear@1: nuclear@1: } nuclear@1: nuclear@1: #if 0 nuclear@1: seq++; nuclear@1: total+=ci->blocksizes[vb->W]/4+ci->blocksizes[vb->nW]/4; nuclear@1: #endif nuclear@1: return(0); nuclear@1: } nuclear@1: nuclear@1: static int mapping0_inverse(vorbis_block *vb,vorbis_info_mapping *l){ nuclear@1: vorbis_dsp_state *vd=vb->vd; nuclear@1: vorbis_info *vi=vd->vi; nuclear@1: codec_setup_info *ci=vi->codec_setup; nuclear@1: private_state *b=vd->backend_state; nuclear@1: vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)l; nuclear@1: nuclear@1: int i,j; nuclear@1: long n=vb->pcmend=ci->blocksizes[vb->W]; nuclear@1: nuclear@1: float **pcmbundle=alloca(sizeof(*pcmbundle)*vi->channels); nuclear@1: int *zerobundle=alloca(sizeof(*zerobundle)*vi->channels); nuclear@1: nuclear@1: int *nonzero =alloca(sizeof(*nonzero)*vi->channels); nuclear@1: void **floormemo=alloca(sizeof(*floormemo)*vi->channels); nuclear@1: nuclear@1: /* recover the spectral envelope; store it in the PCM vector for now */ nuclear@1: for(i=0;ichannels;i++){ nuclear@1: int submap=info->chmuxlist[i]; nuclear@1: floormemo[i]=_floor_P[ci->floor_type[info->floorsubmap[submap]]]-> nuclear@1: inverse1(vb,b->flr[info->floorsubmap[submap]]); nuclear@1: if(floormemo[i]) nuclear@1: nonzero[i]=1; nuclear@1: else nuclear@1: nonzero[i]=0; nuclear@1: memset(vb->pcm[i],0,sizeof(*vb->pcm[i])*n/2); nuclear@1: } nuclear@1: nuclear@1: /* channel coupling can 'dirty' the nonzero listing */ nuclear@1: for(i=0;icoupling_steps;i++){ nuclear@1: if(nonzero[info->coupling_mag[i]] || nuclear@1: nonzero[info->coupling_ang[i]]){ nuclear@1: nonzero[info->coupling_mag[i]]=1; nuclear@1: nonzero[info->coupling_ang[i]]=1; nuclear@1: } nuclear@1: } nuclear@1: nuclear@1: /* recover the residue into our working vectors */ nuclear@1: for(i=0;isubmaps;i++){ nuclear@1: int ch_in_bundle=0; nuclear@1: for(j=0;jchannels;j++){ nuclear@1: if(info->chmuxlist[j]==i){ nuclear@1: if(nonzero[j]) nuclear@1: zerobundle[ch_in_bundle]=1; nuclear@1: else nuclear@1: zerobundle[ch_in_bundle]=0; nuclear@1: pcmbundle[ch_in_bundle++]=vb->pcm[j]; nuclear@1: } nuclear@1: } nuclear@1: nuclear@1: _residue_P[ci->residue_type[info->residuesubmap[i]]]-> nuclear@1: inverse(vb,b->residue[info->residuesubmap[i]], nuclear@1: pcmbundle,zerobundle,ch_in_bundle); nuclear@1: } nuclear@1: nuclear@1: /* channel coupling */ nuclear@1: for(i=info->coupling_steps-1;i>=0;i--){ nuclear@1: float *pcmM=vb->pcm[info->coupling_mag[i]]; nuclear@1: float *pcmA=vb->pcm[info->coupling_ang[i]]; nuclear@1: nuclear@1: for(j=0;j0) nuclear@1: if(ang>0){ nuclear@1: pcmM[j]=mag; nuclear@1: pcmA[j]=mag-ang; nuclear@1: }else{ nuclear@1: pcmA[j]=mag; nuclear@1: pcmM[j]=mag+ang; nuclear@1: } nuclear@1: else nuclear@1: if(ang>0){ nuclear@1: pcmM[j]=mag; nuclear@1: pcmA[j]=mag+ang; nuclear@1: }else{ nuclear@1: pcmA[j]=mag; nuclear@1: pcmM[j]=mag-ang; nuclear@1: } nuclear@1: } nuclear@1: } nuclear@1: nuclear@1: /* compute and apply spectral envelope */ nuclear@1: for(i=0;ichannels;i++){ nuclear@1: float *pcm=vb->pcm[i]; nuclear@1: int submap=info->chmuxlist[i]; nuclear@1: _floor_P[ci->floor_type[info->floorsubmap[submap]]]-> nuclear@1: inverse2(vb,b->flr[info->floorsubmap[submap]], nuclear@1: floormemo[i],pcm); nuclear@1: } nuclear@1: nuclear@1: /* transform the PCM data; takes PCM vector, vb; modifies PCM vector */ nuclear@1: /* only MDCT right now.... */ nuclear@1: for(i=0;ichannels;i++){ nuclear@1: float *pcm=vb->pcm[i]; nuclear@1: mdct_backward(b->transform[vb->W][0],pcm,pcm); nuclear@1: } nuclear@1: nuclear@1: /* all done! */ nuclear@1: return(0); nuclear@1: } nuclear@1: nuclear@1: /* export hooks */ nuclear@1: const vorbis_func_mapping mapping0_exportbundle={ nuclear@1: &mapping0_pack, nuclear@1: &mapping0_unpack, nuclear@1: &mapping0_free_info, nuclear@1: &mapping0_forward, nuclear@1: &mapping0_inverse nuclear@1: };