mapping0.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931
  1. /********************************************************************
  2. * *
  3. * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
  4. * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
  5. * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
  6. * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
  7. * *
  8. * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
  9. * by the Xiph.Org Foundation http://www.xiph.org/ *
  10. * *
  11. ********************************************************************
  12. function: channel mapping 0 implementation
  13. last mod: $Id$
  14. ********************************************************************/
  15. #include <stdlib.h>
  16. #include <stdio.h>
  17. #include <string.h>
  18. #include <math.h>
  19. #include <ogg/ogg.h>
  20. #include "vorbis/codec.h"
  21. #include "codec_internal.h"
  22. #include "codebook.h"
  23. #include "window.h"
  24. #include "registry.h"
  25. #include "psy.h"
  26. #include "misc.h"
  27. /* simplistic, wasteful way of doing this (unique lookup for each
  28. mode/submapping); there should be a central repository for
  29. identical lookups. That will require minor work, so I'm putting it
  30. off as low priority.
  31. Why a lookup for each backend in a given mode? Because the
  32. blocksize is set by the mode, and low backend lookups may require
  33. parameters from other areas of the mode/mapping */
  34. static void mapping0_free_info(vorbis_info_mapping *i){
  35. vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)i;
  36. if(info){
  37. memset(info,0,sizeof(*info));
  38. _ogg_free(info);
  39. }
  40. }
  41. static int ilog(unsigned int v){
  42. int ret=0;
  43. if(v)--v;
  44. while(v){
  45. ret++;
  46. v>>=1;
  47. }
  48. return(ret);
  49. }
  50. static void mapping0_pack(vorbis_info *vi,vorbis_info_mapping *vm,
  51. oggpack_buffer *opb){
  52. int i;
  53. vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)vm;
  54. /* another 'we meant to do it this way' hack... up to beta 4, we
  55. packed 4 binary zeros here to signify one submapping in use. We
  56. now redefine that to mean four bitflags that indicate use of
  57. deeper features; bit0:submappings, bit1:coupling,
  58. bit2,3:reserved. This is backward compatable with all actual uses
  59. of the beta code. */
  60. if(info->submaps>1){
  61. oggpack_write(opb,1,1);
  62. oggpack_write(opb,info->submaps-1,4);
  63. }else
  64. oggpack_write(opb,0,1);
  65. if(info->coupling_steps>0){
  66. oggpack_write(opb,1,1);
  67. oggpack_write(opb,info->coupling_steps-1,8);
  68. for(i=0;i<info->coupling_steps;i++){
  69. oggpack_write(opb,info->coupling_mag[i],ilog(vi->channels));
  70. oggpack_write(opb,info->coupling_ang[i],ilog(vi->channels));
  71. }
  72. }else
  73. oggpack_write(opb,0,1);
  74. oggpack_write(opb,0,2); /* 2,3:reserved */
  75. /* we don't write the channel submappings if we only have one... */
  76. if(info->submaps>1){
  77. for(i=0;i<vi->channels;i++)
  78. oggpack_write(opb,info->chmuxlist[i],4);
  79. }
  80. for(i=0;i<info->submaps;i++){
  81. oggpack_write(opb,0,8); /* time submap unused */
  82. oggpack_write(opb,info->floorsubmap[i],8);
  83. oggpack_write(opb,info->residuesubmap[i],8);
  84. }
  85. }
  86. /* also responsible for range checking */
  87. static vorbis_info_mapping *mapping0_unpack(vorbis_info *vi,oggpack_buffer *opb){
  88. int i;
  89. vorbis_info_mapping0 *info=_ogg_calloc(1,sizeof(*info));
  90. codec_setup_info *ci=vi->codec_setup;
  91. memset(info,0,sizeof(*info));
  92. if(oggpack_read(opb,1))
  93. info->submaps=oggpack_read(opb,4)+1;
  94. else
  95. info->submaps=1;
  96. if(oggpack_read(opb,1)){
  97. info->coupling_steps=oggpack_read(opb,8)+1;
  98. for(i=0;i<info->coupling_steps;i++){
  99. int testM=info->coupling_mag[i]=oggpack_read(opb,ilog(vi->channels));
  100. int testA=info->coupling_ang[i]=oggpack_read(opb,ilog(vi->channels));
  101. if(testM<0 ||
  102. testA<0 ||
  103. testM==testA ||
  104. testM>=vi->channels ||
  105. testA>=vi->channels) goto err_out;
  106. }
  107. }
  108. if(oggpack_read(opb,2)>0)goto err_out; /* 2,3:reserved */
  109. if(info->submaps>1){
  110. for(i=0;i<vi->channels;i++){
  111. info->chmuxlist[i]=oggpack_read(opb,4);
  112. if(info->chmuxlist[i]>=info->submaps)goto err_out;
  113. }
  114. }
  115. for(i=0;i<info->submaps;i++){
  116. oggpack_read(opb,8); /* time submap unused */
  117. info->floorsubmap[i]=oggpack_read(opb,8);
  118. if(info->floorsubmap[i]>=ci->floors)goto err_out;
  119. info->residuesubmap[i]=oggpack_read(opb,8);
  120. if(info->residuesubmap[i]>=ci->residues)goto err_out;
  121. }
  122. return info;
  123. err_out:
  124. mapping0_free_info(info);
  125. return(NULL);
  126. }
  127. #include "os.h"
  128. #include "lpc.h"
  129. #include "lsp.h"
  130. #include "envelope.h"
  131. #include "mdct.h"
  132. #include "psy.h"
  133. #include "scales.h"
  134. #if 0
  135. static long seq=0;
  136. static ogg_int64_t total=0;
  137. static float FLOOR1_fromdB_LOOKUP[256]={
  138. 1.0649863e-07F, 1.1341951e-07F, 1.2079015e-07F, 1.2863978e-07F,
  139. 1.3699951e-07F, 1.4590251e-07F, 1.5538408e-07F, 1.6548181e-07F,
  140. 1.7623575e-07F, 1.8768855e-07F, 1.9988561e-07F, 2.128753e-07F,
  141. 2.2670913e-07F, 2.4144197e-07F, 2.5713223e-07F, 2.7384213e-07F,
  142. 2.9163793e-07F, 3.1059021e-07F, 3.3077411e-07F, 3.5226968e-07F,
  143. 3.7516214e-07F, 3.9954229e-07F, 4.2550680e-07F, 4.5315863e-07F,
  144. 4.8260743e-07F, 5.1396998e-07F, 5.4737065e-07F, 5.8294187e-07F,
  145. 6.2082472e-07F, 6.6116941e-07F, 7.0413592e-07F, 7.4989464e-07F,
  146. 7.9862701e-07F, 8.5052630e-07F, 9.0579828e-07F, 9.6466216e-07F,
  147. 1.0273513e-06F, 1.0941144e-06F, 1.1652161e-06F, 1.2409384e-06F,
  148. 1.3215816e-06F, 1.4074654e-06F, 1.4989305e-06F, 1.5963394e-06F,
  149. 1.7000785e-06F, 1.8105592e-06F, 1.9282195e-06F, 2.0535261e-06F,
  150. 2.1869758e-06F, 2.3290978e-06F, 2.4804557e-06F, 2.6416497e-06F,
  151. 2.8133190e-06F, 2.9961443e-06F, 3.1908506e-06F, 3.3982101e-06F,
  152. 3.6190449e-06F, 3.8542308e-06F, 4.1047004e-06F, 4.3714470e-06F,
  153. 4.6555282e-06F, 4.9580707e-06F, 5.2802740e-06F, 5.6234160e-06F,
  154. 5.9888572e-06F, 6.3780469e-06F, 6.7925283e-06F, 7.2339451e-06F,
  155. 7.7040476e-06F, 8.2047000e-06F, 8.7378876e-06F, 9.3057248e-06F,
  156. 9.9104632e-06F, 1.0554501e-05F, 1.1240392e-05F, 1.1970856e-05F,
  157. 1.2748789e-05F, 1.3577278e-05F, 1.4459606e-05F, 1.5399272e-05F,
  158. 1.6400004e-05F, 1.7465768e-05F, 1.8600792e-05F, 1.9809576e-05F,
  159. 2.1096914e-05F, 2.2467911e-05F, 2.3928002e-05F, 2.5482978e-05F,
  160. 2.7139006e-05F, 2.8902651e-05F, 3.0780908e-05F, 3.2781225e-05F,
  161. 3.4911534e-05F, 3.7180282e-05F, 3.9596466e-05F, 4.2169667e-05F,
  162. 4.4910090e-05F, 4.7828601e-05F, 5.0936773e-05F, 5.4246931e-05F,
  163. 5.7772202e-05F, 6.1526565e-05F, 6.5524908e-05F, 6.9783085e-05F,
  164. 7.4317983e-05F, 7.9147585e-05F, 8.4291040e-05F, 8.9768747e-05F,
  165. 9.5602426e-05F, 0.00010181521F, 0.00010843174F, 0.00011547824F,
  166. 0.00012298267F, 0.00013097477F, 0.00013948625F, 0.00014855085F,
  167. 0.00015820453F, 0.00016848555F, 0.00017943469F, 0.00019109536F,
  168. 0.00020351382F, 0.00021673929F, 0.00023082423F, 0.00024582449F,
  169. 0.00026179955F, 0.00027881276F, 0.00029693158F, 0.00031622787F,
  170. 0.00033677814F, 0.00035866388F, 0.00038197188F, 0.00040679456F,
  171. 0.00043323036F, 0.00046138411F, 0.00049136745F, 0.00052329927F,
  172. 0.00055730621F, 0.00059352311F, 0.00063209358F, 0.00067317058F,
  173. 0.00071691700F, 0.00076350630F, 0.00081312324F, 0.00086596457F,
  174. 0.00092223983F, 0.00098217216F, 0.0010459992F, 0.0011139742F,
  175. 0.0011863665F, 0.0012634633F, 0.0013455702F, 0.0014330129F,
  176. 0.0015261382F, 0.0016253153F, 0.0017309374F, 0.0018434235F,
  177. 0.0019632195F, 0.0020908006F, 0.0022266726F, 0.0023713743F,
  178. 0.0025254795F, 0.0026895994F, 0.0028643847F, 0.0030505286F,
  179. 0.0032487691F, 0.0034598925F, 0.0036847358F, 0.0039241906F,
  180. 0.0041792066F, 0.0044507950F, 0.0047400328F, 0.0050480668F,
  181. 0.0053761186F, 0.0057254891F, 0.0060975636F, 0.0064938176F,
  182. 0.0069158225F, 0.0073652516F, 0.0078438871F, 0.0083536271F,
  183. 0.0088964928F, 0.009474637F, 0.010090352F, 0.010746080F,
  184. 0.011444421F, 0.012188144F, 0.012980198F, 0.013823725F,
  185. 0.014722068F, 0.015678791F, 0.016697687F, 0.017782797F,
  186. 0.018938423F, 0.020169149F, 0.021479854F, 0.022875735F,
  187. 0.024362330F, 0.025945531F, 0.027631618F, 0.029427276F,
  188. 0.031339626F, 0.033376252F, 0.035545228F, 0.037855157F,
  189. 0.040315199F, 0.042935108F, 0.045725273F, 0.048696758F,
  190. 0.051861348F, 0.055231591F, 0.058820850F, 0.062643361F,
  191. 0.066714279F, 0.071049749F, 0.075666962F, 0.080584227F,
  192. 0.085821044F, 0.091398179F, 0.097337747F, 0.10366330F,
  193. 0.11039993F, 0.11757434F, 0.12521498F, 0.13335215F,
  194. 0.14201813F, 0.15124727F, 0.16107617F, 0.17154380F,
  195. 0.18269168F, 0.19456402F, 0.20720788F, 0.22067342F,
  196. 0.23501402F, 0.25028656F, 0.26655159F, 0.28387361F,
  197. 0.30232132F, 0.32196786F, 0.34289114F, 0.36517414F,
  198. 0.38890521F, 0.41417847F, 0.44109412F, 0.46975890F,
  199. 0.50028648F, 0.53279791F, 0.56742212F, 0.60429640F,
  200. 0.64356699F, 0.68538959F, 0.72993007F, 0.77736504F,
  201. 0.82788260F, 0.88168307F, 0.9389798F, 1.F,
  202. };
  203. #endif
  204. extern int *floor1_fit(vorbis_block *vb,vorbis_look_floor *look,
  205. const float *logmdct, /* in */
  206. const float *logmask);
  207. extern int *floor1_interpolate_fit(vorbis_block *vb,vorbis_look_floor *look,
  208. int *A,int *B,
  209. int del);
  210. extern int floor1_encode(oggpack_buffer *opb,vorbis_block *vb,
  211. vorbis_look_floor *look,
  212. int *post,int *ilogmask);
  213. static int mapping0_forward(vorbis_block *vb){
  214. vorbis_dsp_state *vd=vb->vd;
  215. vorbis_info *vi=vd->vi;
  216. codec_setup_info *ci=vi->codec_setup;
  217. private_state *b=vb->vd->backend_state;
  218. vorbis_block_internal *vbi=(vorbis_block_internal *)vb->internal;
  219. vorbis_info_floor1 *vif=ci->floor_param[vb->W];
  220. int n=vb->pcmend;
  221. int i,j,k;
  222. int *nonzero = alloca(sizeof(*nonzero)*vi->channels);
  223. float **gmdct = _vorbis_block_alloc(vb,vi->channels*sizeof(*gmdct));
  224. float **gmdct_org = _vorbis_block_alloc(vb,vi->channels*sizeof(*gmdct_org));
  225. float **res_org = _vorbis_block_alloc(vb,vi->channels*sizeof(*res_org));
  226. int **ilogmaskch= _vorbis_block_alloc(vb,vi->channels*sizeof(*ilogmaskch));
  227. int ***floor_posts = _vorbis_block_alloc(vb,vi->channels*sizeof(*floor_posts));
  228. float global_ampmax=vbi->ampmax;
  229. float *local_ampmax=alloca(sizeof(*local_ampmax)*vi->channels);
  230. int blocktype=vbi->blocktype;
  231. int modenumber=vb->W;
  232. vorbis_info_mapping0 *info=ci->map_param[modenumber];
  233. vorbis_look_psy *psy_look=
  234. b->psy+blocktype+(vb->W?2:0);
  235. vb->mode=modenumber;
  236. for(i=0;i<vi->channels;i++){
  237. float scale=4.f/n;
  238. float scale_dB;
  239. float *pcm =vb->pcm[i];
  240. float *logfft =pcm;
  241. gmdct[i]=_vorbis_block_alloc(vb,n/2*sizeof(**gmdct));
  242. gmdct_org[i]=_vorbis_block_alloc(vb,n/2*sizeof(**gmdct_org));
  243. res_org[i]=_vorbis_block_alloc(vb,n/2*sizeof(**res_org));
  244. scale_dB=todB(&scale) + .345; /* + .345 is a hack; the original
  245. todB estimation used on IEEE 754
  246. compliant machines had a bug that
  247. returned dB values about a third
  248. of a decibel too high. The bug
  249. was harmless because tunings
  250. implicitly took that into
  251. account. However, fixing the bug
  252. in the estimator requires
  253. changing all the tunings as well.
  254. For now, it's easier to sync
  255. things back up here, and
  256. recalibrate the tunings in the
  257. next major model upgrade. */
  258. #if 0
  259. if(vi->channels==2){
  260. if(i==0)
  261. _analysis_output("pcmL",seq,pcm,n,0,0,total-n/2);
  262. else
  263. _analysis_output("pcmR",seq,pcm,n,0,0,total-n/2);
  264. }else{
  265. _analysis_output("pcm",seq,pcm,n,0,0,total-n/2);
  266. }
  267. #endif
  268. /* window the PCM data */
  269. _vorbis_apply_window(pcm,b->window,ci->blocksizes,vb->lW,vb->W,vb->nW);
  270. #if 0
  271. if(vi->channels==2){
  272. if(i==0)
  273. _analysis_output("windowedL",seq,pcm,n,0,0,total-n/2);
  274. else
  275. _analysis_output("windowedR",seq,pcm,n,0,0,total-n/2);
  276. }else{
  277. _analysis_output("windowed",seq,pcm,n,0,0,total-n/2);
  278. }
  279. #endif
  280. /* transform the PCM data */
  281. /* only MDCT right now.... */
  282. mdct_forward(b->transform[vb->W][0],pcm,gmdct[i]);
  283. memcpy(gmdct_org[i], gmdct[i], n/2*sizeof(**gmdct_org));
  284. /* FFT yields more accurate tonal estimation (not phase sensitive) */
  285. drft_forward(&b->fft_look[vb->W],pcm);
  286. logfft[0]=scale_dB+todB(pcm) + .345; /* + .345 is a hack; the
  287. original todB estimation used on
  288. IEEE 754 compliant machines had a
  289. bug that returned dB values about
  290. a third of a decibel too high.
  291. The bug was harmless because
  292. tunings implicitly took that into
  293. account. However, fixing the bug
  294. in the estimator requires
  295. changing all the tunings as well.
  296. For now, it's easier to sync
  297. things back up here, and
  298. recalibrate the tunings in the
  299. next major model upgrade. */
  300. local_ampmax[i]=logfft[0];
  301. for(j=1;j<n-1;j+=2){
  302. float temp=pcm[j]*pcm[j]+pcm[j+1]*pcm[j+1];
  303. temp=logfft[(j+1)>>1]=scale_dB+.5f*todB(&temp) + .345; /* +
  304. .345 is a hack; the original todB
  305. estimation used on IEEE 754
  306. compliant machines had a bug that
  307. returned dB values about a third
  308. of a decibel too high. The bug
  309. was harmless because tunings
  310. implicitly took that into
  311. account. However, fixing the bug
  312. in the estimator requires
  313. changing all the tunings as well.
  314. For now, it's easier to sync
  315. things back up here, and
  316. recalibrate the tunings in the
  317. next major model upgrade. */
  318. if(temp>local_ampmax[i])local_ampmax[i]=temp;
  319. }
  320. if(local_ampmax[i]>0.f)local_ampmax[i]=0.f;
  321. if(local_ampmax[i]>global_ampmax)global_ampmax=local_ampmax[i];
  322. #if 0
  323. if(vi->channels==2){
  324. if(i==0){
  325. _analysis_output("fftL",seq,logfft,n/2,1,0,0);
  326. }else{
  327. _analysis_output("fftR",seq,logfft,n/2,1,0,0);
  328. }
  329. }else{
  330. _analysis_output("fft",seq,logfft,n/2,1,0,0);
  331. }
  332. #endif
  333. }
  334. {
  335. float *noise = _vorbis_block_alloc(vb,n/2*sizeof(*noise));
  336. float *tone = _vorbis_block_alloc(vb,n/2*sizeof(*tone));
  337. for(i=0;i<vi->channels;i++){
  338. /* the encoder setup assumes that all the modes used by any
  339. specific bitrate tweaking use the same floor */
  340. int submap=info->chmuxlist[i];
  341. /* the following makes things clearer to *me* anyway */
  342. float *mdct =gmdct[i];
  343. float *logfft =vb->pcm[i];
  344. float *logmdct =logfft+n/2;
  345. float *logmask =logfft;
  346. float *lastmdct = b->nblock+i*256;
  347. float *tempmdct = b->tblock+i*256;
  348. float *lowcomp = b->lownoise_compand_level+i;
  349. vb->mode=modenumber;
  350. floor_posts[i]=_vorbis_block_alloc(vb,PACKETBLOBS*sizeof(**floor_posts));
  351. memset(floor_posts[i],0,sizeof(**floor_posts)*PACKETBLOBS);
  352. for(j=0;j<n/2;j++)
  353. logmdct[j]=todB(mdct+j) + .345; /* + .345 is a hack; the original
  354. todB estimation used on IEEE 754
  355. compliant machines had a bug that
  356. returned dB values about a third
  357. of a decibel too high. The bug
  358. was harmless because tunings
  359. implicitly took that into
  360. account. However, fixing the bug
  361. in the estimator requires
  362. changing all the tunings as well.
  363. For now, it's easier to sync
  364. things back up here, and
  365. recalibrate the tunings in the
  366. next major model upgrade. */
  367. #if 0
  368. if(vi->channels==2){
  369. if(i==0)
  370. _analysis_output("mdctL",seq,logmdct,n/2,1,0,0);
  371. else
  372. _analysis_output("mdctR",seq,logmdct,n/2,1,0,0);
  373. }else{
  374. _analysis_output("mdct",seq,logmdct,n/2,1,0,0);
  375. }
  376. #endif
  377. /* first step; noise masking. Not only does 'noise masking'
  378. give us curves from which we can decide how much resolution
  379. to give noise parts of the spectrum, it also implicitly hands
  380. us a tonality estimate (the larger the value in the
  381. 'noise_depth' vector, the more tonal that area is) */
  382. *lowcomp=
  383. lb_loudnoise_fix(psy_look,
  384. *lowcomp,
  385. logmdct,
  386. b->lW_modenumber,
  387. blocktype, modenumber);
  388. _vp_noisemask(psy_look,
  389. *lowcomp,
  390. logmdct,
  391. noise); /* noise does not have by-frequency offset
  392. bias applied yet */
  393. #if 0
  394. if(vi->channels==2){
  395. if(i==0)
  396. _analysis_output("noiseL",seq,noise,n/2,1,0,0);
  397. else
  398. _analysis_output("noiseR",seq,noise,n/2,1,0,0);
  399. }else{
  400. _analysis_output("noise",seq,noise,n/2,1,0,0);
  401. }
  402. #endif
  403. /* second step: 'all the other crap'; all the stuff that isn't
  404. computed/fit for bitrate management goes in the second psy
  405. vector. This includes tone masking, peak limiting and ATH */
  406. _vp_tonemask(psy_look,
  407. logfft,
  408. tone,
  409. global_ampmax,
  410. local_ampmax[i]);
  411. #if 0
  412. if(vi->channels==2){
  413. if(i==0)
  414. _analysis_output("toneL",seq,tone,n/2,1,0,0);
  415. else
  416. _analysis_output("toneR",seq,tone,n/2,1,0,0);
  417. }else{
  418. _analysis_output("tone",seq,tone,n/2,1,0,0);
  419. }
  420. #endif
  421. /* third step; we offset the noise vectors, overlay tone
  422. masking. We then do a floor1-specific line fit. If we're
  423. performing bitrate management, the line fit is performed
  424. multiple times for up/down tweakage on demand. */
  425. #if 0
  426. {
  427. float aotuv[psy_look->n];
  428. #endif
  429. _vp_offset_and_mix(psy_look,
  430. noise,
  431. tone,
  432. 1,
  433. vorbis_bitrate_managed(vb),
  434. logmask,
  435. mdct,
  436. logmdct,
  437. lastmdct, tempmdct,
  438. *lowcomp,
  439. vif->n,
  440. blocktype, modenumber,
  441. vb->nW,
  442. b->lW_blocktype, b->lW_modenumber, b->lW_no, b->padnum);
  443. #if 0
  444. if(vi->channels==2){
  445. if(i==0)
  446. _analysis_output("aotuvM1_L",seq,aotuv,psy_look->n,1,1,0);
  447. else
  448. _analysis_output("aotuvM1_R",seq,aotuv,psy_look->n,1,1,0);
  449. }else{
  450. _analysis_output("aotuvM1",seq,aotuv,psy_look->n,1,1,0);
  451. }
  452. }
  453. #endif
  454. #if 0
  455. if(vi->channels==2){
  456. if(i==0)
  457. _analysis_output("mask1L",seq,logmask,n/2,1,0,0);
  458. else
  459. _analysis_output("mask1R",seq,logmask,n/2,1,0,0);
  460. }else{
  461. _analysis_output("mask1",seq,logmask,n/2,1,0,0);
  462. }
  463. #endif
  464. /* this algorithm is hardwired to floor 1 for now; abort out if
  465. we're *not* floor1. This won't happen unless someone has
  466. broken the encode setup lib. Guard it anyway. */
  467. if(ci->floor_type[info->floorsubmap[submap]]!=1)return(-1);
  468. floor_posts[i][PACKETBLOBS/2]=
  469. floor1_fit(vb,b->flr[info->floorsubmap[submap]],
  470. logmdct,
  471. logmask);
  472. /* are we managing bitrate? If so, perform two more fits for
  473. later rate tweaking (fits represent hi/lo) */
  474. if(vorbis_bitrate_managed(vb) && floor_posts[i][PACKETBLOBS/2]){
  475. /* higher rate by way of lower noise curve */
  476. _vp_offset_and_mix(psy_look,
  477. noise,
  478. tone,
  479. 2,
  480. vorbis_bitrate_managed(vb),
  481. logmask,
  482. mdct,
  483. logmdct,
  484. lastmdct, tempmdct,
  485. *lowcomp,
  486. vif->n,
  487. blocktype, modenumber,
  488. vb->nW,
  489. b->lW_blocktype, b->lW_modenumber, b->lW_no, b->padnum);
  490. #if 0
  491. if(vi->channels==2){
  492. if(i==0)
  493. _analysis_output("mask2L",seq,logmask,n/2,1,0,0);
  494. else
  495. _analysis_output("mask2R",seq,logmask,n/2,1,0,0);
  496. }else{
  497. _analysis_output("mask2",seq,logmask,n/2,1,0,0);
  498. }
  499. #endif
  500. floor_posts[i][PACKETBLOBS-1]=
  501. floor1_fit(vb,b->flr[info->floorsubmap[submap]],
  502. logmdct,
  503. logmask);
  504. /* lower rate by way of higher noise curve */
  505. _vp_offset_and_mix(psy_look,
  506. noise,
  507. tone,
  508. 0,
  509. vorbis_bitrate_managed(vb),
  510. logmask,
  511. mdct,
  512. logmdct,
  513. lastmdct, tempmdct,
  514. *lowcomp,
  515. vif->n,
  516. blocktype, modenumber,
  517. vb->nW,
  518. b->lW_blocktype, b->lW_modenumber, b->lW_no, b->padnum);
  519. #if 0
  520. if(vi->channels==2){
  521. if(i==0)
  522. _analysis_output("mask0L",seq,logmask,n/2,1,0,0);
  523. else
  524. _analysis_output("mask0R",seq,logmask,n/2,1,0,0);
  525. }else{
  526. _analysis_output("mask0",seq,logmask,n/2,1,0,0);
  527. }
  528. #endif
  529. floor_posts[i][0]=
  530. floor1_fit(vb,b->flr[info->floorsubmap[submap]],
  531. logmdct,
  532. logmask);
  533. /* we also interpolate a range of intermediate curves for
  534. intermediate rates */
  535. for(k=1;k<PACKETBLOBS/2;k++)
  536. floor_posts[i][k]=
  537. floor1_interpolate_fit(vb,b->flr[info->floorsubmap[submap]],
  538. floor_posts[i][0],
  539. floor_posts[i][PACKETBLOBS/2],
  540. k*65536/(PACKETBLOBS/2));
  541. for(k=PACKETBLOBS/2+1;k<PACKETBLOBS-1;k++)
  542. floor_posts[i][k]=
  543. floor1_interpolate_fit(vb,b->flr[info->floorsubmap[submap]],
  544. floor_posts[i][PACKETBLOBS/2],
  545. floor_posts[i][PACKETBLOBS-1],
  546. (k-PACKETBLOBS/2)*65536/(PACKETBLOBS/2));
  547. }
  548. }
  549. }
  550. vbi->ampmax=global_ampmax;
  551. /*
  552. the next phases are performed once for vbr-only and PACKETBLOB
  553. times for bitrate managed modes.
  554. 1) encode actual mode being used
  555. 2) encode the floor for each channel, compute coded mask curve/res
  556. 3) normalize and couple.
  557. 4) encode residue
  558. 5) save packet bytes to the packetblob vector
  559. */
  560. /* iterate over the many masking curve fits we've created */
  561. {
  562. float **res_bundle=alloca(sizeof(*res_bundle)*vi->channels);
  563. float **couple_bundle=alloca(sizeof(*couple_bundle)*vi->channels);
  564. int *zerobundle=alloca(sizeof(*zerobundle)*vi->channels);
  565. int **sortindex=alloca(sizeof(*sortindex)*vi->channels);
  566. float **mag_memo;
  567. int **mag_sort;
  568. if(info->coupling_steps){
  569. mag_memo=_vp_quantize_couple_memo(vb,
  570. &ci->psy_g_param,
  571. psy_look,
  572. info,
  573. gmdct);
  574. mag_sort=_vp_quantize_couple_sort(vb,
  575. psy_look,
  576. info,
  577. mag_memo);
  578. }
  579. memset(sortindex,0,sizeof(*sortindex)*vi->channels);
  580. if(psy_look->vi->normal_channel_p){
  581. for(i=0;i<vi->channels;i++){
  582. float *mdct =gmdct[i];
  583. sortindex[i]=alloca(sizeof(**sortindex)*n/2);
  584. _vp_noise_normalize_sort(psy_look,mdct,sortindex[i]);
  585. }
  586. }
  587. for(k=(vorbis_bitrate_managed(vb)?0:PACKETBLOBS/2);
  588. k<=(vorbis_bitrate_managed(vb)?PACKETBLOBS-1:PACKETBLOBS/2);
  589. k++){
  590. oggpack_buffer *opb=vbi->packetblob[k];
  591. /* start out our new packet blob with packet type and mode */
  592. /* Encode the packet type */
  593. oggpack_write(opb,0,1);
  594. /* Encode the modenumber */
  595. /* Encode frame mode, pre,post windowsize, then dispatch */
  596. oggpack_write(opb,modenumber,b->modebits);
  597. if(vb->W){
  598. oggpack_write(opb,vb->lW,1);
  599. oggpack_write(opb,vb->nW,1);
  600. }
  601. /* encode floor, compute masking curve, sep out residue */
  602. for(i=0;i<vi->channels;i++){
  603. int submap=info->chmuxlist[i];
  604. float *mdct =gmdct[i];
  605. float *mdct_org=gmdct_org[i];
  606. float *res =vb->pcm[i];
  607. float *resorgch=res_org[i];
  608. int *ilogmask=ilogmaskch[i]=
  609. _vorbis_block_alloc(vb,n/2*sizeof(**gmdct));
  610. nonzero[i]=floor1_encode(opb,vb,b->flr[info->floorsubmap[submap]],
  611. floor_posts[i][k],
  612. ilogmask);
  613. #if 0
  614. {
  615. char buf[80];
  616. sprintf(buf,"maskI%c%d",i?'R':'L',k);
  617. float work[n/2];
  618. for(j=0;j<n/2;j++)
  619. work[j]=FLOOR1_fromdB_LOOKUP[ilogmask[j]];
  620. _analysis_output(buf,seq,work,n/2,1,1,0);
  621. }
  622. #endif
  623. _vp_remove_floor(psy_look,
  624. mdct,
  625. ilogmask,
  626. res,
  627. ci->psy_g_param.sliding_lowpass[vb->W][k]);
  628. /* stereo threshold */
  629. _vp_remove_floor(psy_look,
  630. mdct_org,
  631. ilogmask,
  632. resorgch,
  633. ci->psy_g_param.sliding_lowpass[vb->W][k]);
  634. _vp_noise_normalize(psy_look,res,res+n/2,sortindex[i],
  635. blocktype, modenumber);
  636. #if 0
  637. {
  638. char buf[80];
  639. float work[n/2];
  640. for(j=0;j<n/2;j++)
  641. work[j]=FLOOR1_fromdB_LOOKUP[ilogmask[j]]*(res+n/2)[j];
  642. sprintf(buf,"resI%c%d",i?'R':'L',k);
  643. _analysis_output(buf,seq,work,n/2,1,1,0);
  644. }
  645. #endif
  646. }
  647. /* our iteration is now based on masking curve, not prequant and
  648. coupling. Only one prequant/coupling step */
  649. /* quantize/couple */
  650. /* incomplete implementation that assumes the tree is all depth
  651. one, or no tree at all */
  652. if(info->coupling_steps){
  653. _vp_couple(k,
  654. &ci->psy_g_param,
  655. psy_look,
  656. info,
  657. vb->pcm,
  658. mag_memo,
  659. mag_sort,
  660. ilogmaskch,
  661. nonzero,
  662. ci->psy_g_param.sliding_lowpass[vb->W][k],
  663. blocktype, modenumber,
  664. gmdct, res_org);
  665. }
  666. /* classify and encode by submap */
  667. for(i=0;i<info->submaps;i++){
  668. int ch_in_bundle=0;
  669. long **classifications;
  670. int resnum=info->residuesubmap[i];
  671. for(j=0;j<vi->channels;j++){
  672. if(info->chmuxlist[j]==i){
  673. zerobundle[ch_in_bundle]=0;
  674. if(nonzero[j])zerobundle[ch_in_bundle]=1;
  675. res_bundle[ch_in_bundle]=vb->pcm[j];
  676. couple_bundle[ch_in_bundle++]=vb->pcm[j]+n/2;
  677. }
  678. }
  679. classifications=_residue_P[ci->residue_type[resnum]]->
  680. class(vb,b->residue[resnum],couple_bundle,zerobundle,ch_in_bundle);
  681. _residue_P[ci->residue_type[resnum]]->
  682. forward(opb,vb,b->residue[resnum],
  683. couple_bundle,NULL,zerobundle,ch_in_bundle,classifications);
  684. }
  685. /* set last-window type & number */
  686. // if (last window == impulse) && (present window == padding) padnum=1
  687. if(!b->lW_modenumber && !b->lW_blocktype && !modenumber && blocktype) b->padnum=1;
  688. else if(b->padnum) b->padnum++;
  689. if(modenumber) b->padnum=0; // if (present window == (long or trans.) ) padnum=0 [reset]
  690. // if (current block type == last block type) lW_no++
  691. if((blocktype == b->lW_blocktype) && (modenumber == b->lW_modenumber)) b->lW_no++;
  692. else b->lW_no = 1;
  693. b->lW_blocktype = blocktype;
  694. b->lW_modenumber = modenumber;
  695. /* ok, done encoding. Next protopacket. */
  696. // block type
  697. /*if(modenumber && blocktype)printf("[L]\n");
  698. else if(modenumber && !blocktype)printf("[T]\n");
  699. else if(!modenumber && blocktype)printf("[P]\n");
  700. else if(!modenumber && !blocktype)printf("[I]\n");*/
  701. }
  702. }
  703. #if 0
  704. seq++;
  705. total+=ci->blocksizes[vb->W]/4+ci->blocksizes[vb->nW]/4;
  706. #endif
  707. return(0);
  708. }
  709. static int mapping0_inverse(vorbis_block *vb,vorbis_info_mapping *l){
  710. vorbis_dsp_state *vd=vb->vd;
  711. vorbis_info *vi=vd->vi;
  712. codec_setup_info *ci=vi->codec_setup;
  713. private_state *b=vd->backend_state;
  714. vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)l;
  715. int hs=ci->halfrate_flag;
  716. int i,j;
  717. long n=vb->pcmend=ci->blocksizes[vb->W];
  718. float **pcmbundle=alloca(sizeof(*pcmbundle)*vi->channels);
  719. int *zerobundle=alloca(sizeof(*zerobundle)*vi->channels);
  720. int *nonzero =alloca(sizeof(*nonzero)*vi->channels);
  721. void **floormemo=alloca(sizeof(*floormemo)*vi->channels);
  722. /* recover the spectral envelope; store it in the PCM vector for now */
  723. for(i=0;i<vi->channels;i++){
  724. int submap=info->chmuxlist[i];
  725. floormemo[i]=_floor_P[ci->floor_type[info->floorsubmap[submap]]]->
  726. inverse1(vb,b->flr[info->floorsubmap[submap]]);
  727. if(floormemo[i])
  728. nonzero[i]=1;
  729. else
  730. nonzero[i]=0;
  731. memset(vb->pcm[i],0,sizeof(*vb->pcm[i])*n/2);
  732. }
  733. /* channel coupling can 'dirty' the nonzero listing */
  734. for(i=0;i<info->coupling_steps;i++){
  735. if(nonzero[info->coupling_mag[i]] ||
  736. nonzero[info->coupling_ang[i]]){
  737. nonzero[info->coupling_mag[i]]=1;
  738. nonzero[info->coupling_ang[i]]=1;
  739. }
  740. }
  741. /* recover the residue into our working vectors */
  742. for(i=0;i<info->submaps;i++){
  743. int ch_in_bundle=0;
  744. for(j=0;j<vi->channels;j++){
  745. if(info->chmuxlist[j]==i){
  746. if(nonzero[j])
  747. zerobundle[ch_in_bundle]=1;
  748. else
  749. zerobundle[ch_in_bundle]=0;
  750. pcmbundle[ch_in_bundle++]=vb->pcm[j];
  751. }
  752. }
  753. _residue_P[ci->residue_type[info->residuesubmap[i]]]->
  754. inverse(vb,b->residue[info->residuesubmap[i]],
  755. pcmbundle,zerobundle,ch_in_bundle);
  756. }
  757. /* channel coupling */
  758. for(i=info->coupling_steps-1;i>=0;i--){
  759. float *pcmM=vb->pcm[info->coupling_mag[i]];
  760. float *pcmA=vb->pcm[info->coupling_ang[i]];
  761. for(j=0;j<n/2;j++){
  762. float mag=pcmM[j];
  763. float ang=pcmA[j];
  764. if(mag>0)
  765. if(ang>0){
  766. pcmM[j]=mag;
  767. pcmA[j]=mag-ang;
  768. }else{
  769. pcmA[j]=mag;
  770. pcmM[j]=mag+ang;
  771. }
  772. else
  773. if(ang>0){
  774. pcmM[j]=mag;
  775. pcmA[j]=mag+ang;
  776. }else{
  777. pcmA[j]=mag;
  778. pcmM[j]=mag-ang;
  779. }
  780. }
  781. }
  782. /* compute and apply spectral envelope */
  783. for(i=0;i<vi->channels;i++){
  784. float *pcm=vb->pcm[i];
  785. int submap=info->chmuxlist[i];
  786. _floor_P[ci->floor_type[info->floorsubmap[submap]]]->
  787. inverse2(vb,b->flr[info->floorsubmap[submap]],
  788. floormemo[i],pcm);
  789. }
  790. /* transform the PCM data; takes PCM vector, vb; modifies PCM vector */
  791. /* only MDCT right now.... */
  792. for(i=0;i<vi->channels;i++){
  793. float *pcm=vb->pcm[i];
  794. mdct_backward(b->transform[vb->W][0],pcm,pcm);
  795. }
  796. /* all done! */
  797. return(0);
  798. }
  799. /* export hooks */
  800. vorbis_func_mapping mapping0_exportbundle={
  801. &mapping0_pack,
  802. &mapping0_unpack,
  803. &mapping0_free_info,
  804. &mapping0_forward,
  805. &mapping0_inverse
  806. };