Mono and > stereo modes (uncoupled polyphonic) committed
[platform/upstream/libvorbis.git] / lib / mapping0.c
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-2001             *
9  * by the XIPHOPHORUS Company http://www.xiph.org/                  *
10  *                                                                  *
11  ********************************************************************
12
13  function: channel mapping 0 implementation
14  last mod: $Id: mapping0.c,v 1.39 2001/12/16 04:15:46 xiphmont Exp $
15
16  ********************************************************************/
17
18 #include <stdlib.h>
19 #include <stdio.h>
20 #include <string.h>
21 #include <math.h>
22 #include <ogg/ogg.h>
23 #include "vorbis/codec.h"
24 #include "codec_internal.h"
25 #include "codebook.h"
26 #include "registry.h"
27 #include "psy.h"
28 #include "misc.h"
29
30 /* simplistic, wasteful way of doing this (unique lookup for each
31    mode/submapping); there should be a central repository for
32    identical lookups.  That will require minor work, so I'm putting it
33    off as low priority.
34
35    Why a lookup for each backend in a given mode?  Because the
36    blocksize is set by the mode, and low backend lookups may require
37    parameters from other areas of the mode/mapping */
38
39 extern int analysis_noisy;
40
41 typedef struct {
42   drft_lookup fft_look;
43   vorbis_info_mode *mode;
44   vorbis_info_mapping0 *map;
45
46   vorbis_look_time **time_look;
47   vorbis_look_floor **floor_look;
48
49   vorbis_look_residue **residue_look;
50   vorbis_look_psy *psy_look[2];
51
52   vorbis_func_time **time_func;
53   vorbis_func_floor **floor_func;
54   vorbis_func_residue **residue_func;
55
56   int ch;
57   long lastframe; /* if a different mode is called, we need to 
58                      invalidate decay */
59 } vorbis_look_mapping0;
60
61 static vorbis_info_mapping *mapping0_copy_info(vorbis_info_mapping *vm){
62   vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)vm;
63   vorbis_info_mapping0 *ret=_ogg_malloc(sizeof(*ret));
64   memcpy(ret,info,sizeof(*ret));
65   return(ret);
66 }
67
68 static void mapping0_free_info(vorbis_info_mapping *i){
69   vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)i;
70   if(info){
71     memset(info,0,sizeof(*info));
72     _ogg_free(info);
73   }
74 }
75
76 static void mapping0_free_look(vorbis_look_mapping *look){
77   int i;
78   vorbis_look_mapping0 *l=(vorbis_look_mapping0 *)look;
79   if(l){
80     drft_clear(&l->fft_look);
81
82     for(i=0;i<l->map->submaps;i++){
83       l->time_func[i]->free_look(l->time_look[i]);
84       l->floor_func[i]->free_look(l->floor_look[i]);
85       l->residue_func[i]->free_look(l->residue_look[i]);
86     }
87     if(l->psy_look[1] && l->psy_look[1]!=l->psy_look[0]){
88       _vp_psy_clear(l->psy_look[1]);
89       _ogg_free(l->psy_look[1]);
90     }
91     if(l->psy_look[0]){
92       _vp_psy_clear(l->psy_look[0]);
93       _ogg_free(l->psy_look[0]);
94     }
95     _ogg_free(l->time_func);
96     _ogg_free(l->floor_func);
97     _ogg_free(l->residue_func);
98     _ogg_free(l->time_look);
99     _ogg_free(l->floor_look);
100     _ogg_free(l->residue_look);
101     memset(l,0,sizeof(*l));
102     _ogg_free(l);
103   }
104 }
105
106 static vorbis_look_mapping *mapping0_look(vorbis_dsp_state *vd,vorbis_info_mode *vm,
107                           vorbis_info_mapping *m){
108   int i;
109   vorbis_info          *vi=vd->vi;
110   codec_setup_info     *ci=vi->codec_setup;
111   vorbis_look_mapping0 *look=_ogg_calloc(1,sizeof(*look));
112   vorbis_info_mapping0 *info=look->map=(vorbis_info_mapping0 *)m;
113   look->mode=vm;
114   
115   look->time_look=_ogg_calloc(info->submaps,sizeof(*look->time_look));
116   look->floor_look=_ogg_calloc(info->submaps,sizeof(*look->floor_look));
117
118   look->residue_look=_ogg_calloc(info->submaps,sizeof(*look->residue_look));
119
120   look->time_func=_ogg_calloc(info->submaps,sizeof(*look->time_func));
121   look->floor_func=_ogg_calloc(info->submaps,sizeof(*look->floor_func));
122   look->residue_func=_ogg_calloc(info->submaps,sizeof(*look->residue_func));
123   
124   for(i=0;i<info->submaps;i++){
125     int timenum=info->timesubmap[i];
126     int floornum=info->floorsubmap[i];
127     int resnum=info->residuesubmap[i];
128
129     look->time_func[i]=_time_P[ci->time_type[timenum]];
130     look->time_look[i]=look->time_func[i]->
131       look(vd,vm,ci->time_param[timenum]);
132     look->floor_func[i]=_floor_P[ci->floor_type[floornum]];
133     look->floor_look[i]=look->floor_func[i]->
134       look(vd,vm,ci->floor_param[floornum]);
135     look->residue_func[i]=_residue_P[ci->residue_type[resnum]];
136     look->residue_look[i]=look->residue_func[i]->
137       look(vd,vm,ci->residue_param[resnum]);
138     
139   }
140   if(ci->psys && vd->analysisp){
141     if(info->psy[0] != info->psy[1]){
142
143       int psynum=info->psy[0];
144       look->psy_look[0]=_ogg_calloc(1,sizeof(*look->psy_look[0]));      
145       _vp_psy_init(look->psy_look[0],ci->psy_param[psynum],
146                    &ci->psy_g_param,
147                    ci->blocksizes[vm->blockflag]/2,vi->rate);
148
149       psynum=info->psy[1];
150       look->psy_look[1]=_ogg_calloc(1,sizeof(*look->psy_look[1]));      
151       _vp_psy_init(look->psy_look[1],ci->psy_param[psynum],
152                    &ci->psy_g_param,
153                    ci->blocksizes[vm->blockflag]/2,vi->rate);
154     }else{
155
156       int psynum=info->psy[0];
157       look->psy_look[0]=_ogg_calloc(1,sizeof(*look->psy_look[0]));      
158       look->psy_look[1]=look->psy_look[0];
159       _vp_psy_init(look->psy_look[0],ci->psy_param[psynum],
160                    &ci->psy_g_param,
161                    ci->blocksizes[vm->blockflag]/2,vi->rate);
162
163     }
164   }
165
166   look->ch=vi->channels;
167
168   if(vd->analysisp)drft_init(&look->fft_look,ci->blocksizes[vm->blockflag]);
169   return(look);
170 }
171
172 static int ilog2(unsigned int v){
173   int ret=0;
174   while(v>1){
175     ret++;
176     v>>=1;
177   }
178   return(ret);
179 }
180
181 static void mapping0_pack(vorbis_info *vi,vorbis_info_mapping *vm,
182                           oggpack_buffer *opb){
183   int i;
184   vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)vm;
185
186   /* another 'we meant to do it this way' hack...  up to beta 4, we
187      packed 4 binary zeros here to signify one submapping in use.  We
188      now redefine that to mean four bitflags that indicate use of
189      deeper features; bit0:submappings, bit1:coupling,
190      bit2,3:reserved. This is backward compatable with all actual uses
191      of the beta code. */
192
193   if(info->submaps>1){
194     oggpack_write(opb,1,1);
195     oggpack_write(opb,info->submaps-1,4);
196   }else
197     oggpack_write(opb,0,1);
198
199   if(info->coupling_steps>0){
200     oggpack_write(opb,1,1);
201     oggpack_write(opb,info->coupling_steps-1,8);
202     
203     for(i=0;i<info->coupling_steps;i++){
204       oggpack_write(opb,info->coupling_mag[i],ilog2(vi->channels));
205       oggpack_write(opb,info->coupling_ang[i],ilog2(vi->channels));
206     }
207   }else
208     oggpack_write(opb,0,1);
209   
210   oggpack_write(opb,0,2); /* 2,3:reserved */
211
212   /* we don't write the channel submappings if we only have one... */
213   if(info->submaps>1){
214     for(i=0;i<vi->channels;i++)
215       oggpack_write(opb,info->chmuxlist[i],4);
216   }
217   for(i=0;i<info->submaps;i++){
218     oggpack_write(opb,info->timesubmap[i],8);
219     oggpack_write(opb,info->floorsubmap[i],8);
220     oggpack_write(opb,info->residuesubmap[i],8);
221   }
222 }
223
224 /* also responsible for range checking */
225 static vorbis_info_mapping *mapping0_unpack(vorbis_info *vi,oggpack_buffer *opb){
226   int i;
227   vorbis_info_mapping0 *info=_ogg_calloc(1,sizeof(*info));
228   codec_setup_info     *ci=vi->codec_setup;
229   memset(info,0,sizeof(*info));
230
231   if(oggpack_read(opb,1))
232     info->submaps=oggpack_read(opb,4)+1;
233   else
234     info->submaps=1;
235
236   if(oggpack_read(opb,1)){
237     info->coupling_steps=oggpack_read(opb,8)+1;
238
239     for(i=0;i<info->coupling_steps;i++){
240       int testM=info->coupling_mag[i]=oggpack_read(opb,ilog2(vi->channels));
241       int testA=info->coupling_ang[i]=oggpack_read(opb,ilog2(vi->channels));
242
243       if(testM<0 || 
244          testA<0 || 
245          testM==testA || 
246          testM>=vi->channels ||
247          testA>=vi->channels) goto err_out;
248     }
249
250   }
251
252   if(oggpack_read(opb,2)>0)goto err_out; /* 2,3:reserved */
253     
254   if(info->submaps>1){
255     for(i=0;i<vi->channels;i++){
256       info->chmuxlist[i]=oggpack_read(opb,4);
257       if(info->chmuxlist[i]>=info->submaps)goto err_out;
258     }
259   }
260   for(i=0;i<info->submaps;i++){
261     info->timesubmap[i]=oggpack_read(opb,8);
262     if(info->timesubmap[i]>=ci->times)goto err_out;
263     info->floorsubmap[i]=oggpack_read(opb,8);
264     if(info->floorsubmap[i]>=ci->floors)goto err_out;
265     info->residuesubmap[i]=oggpack_read(opb,8);
266     if(info->residuesubmap[i]>=ci->residues)goto err_out;
267   }
268
269   return info;
270
271  err_out:
272   mapping0_free_info(info);
273   return(NULL);
274 }
275
276 #include "os.h"
277 #include "lpc.h"
278 #include "lsp.h"
279 #include "envelope.h"
280 #include "mdct.h"
281 #include "psy.h"
282 #include "scales.h"
283
284 /* no time mapping implementation for now */
285 static long seq=0;
286 static int mapping0_forward(vorbis_block *vb,vorbis_look_mapping *l){
287   vorbis_dsp_state      *vd=vb->vd;
288   vorbis_info           *vi=vd->vi;
289   codec_setup_info      *ci=vi->codec_setup;
290   backend_lookup_state  *b=vb->vd->backend_state;
291   bitrate_manager_state *bm=&b->bms;
292   vorbis_look_mapping0  *look=(vorbis_look_mapping0 *)l;
293   vorbis_info_mapping0  *info=look->map;
294   vorbis_info_mode      *mode=look->mode;
295   vorbis_block_internal *vbi=(vorbis_block_internal *)vb->internal;
296   int                    n=vb->pcmend;
297   int i,j;
298   float *window=b->window[vb->W][vb->lW][vb->nW][mode->windowtype];
299   int   *nonzero=alloca(sizeof(*nonzero)*vi->channels);
300
301   float *work=_vorbis_block_alloc(vb,n*sizeof(*work));
302
303   float global_ampmax=vbi->ampmax;
304   float *local_ampmax=alloca(sizeof(*local_ampmax)*vi->channels);
305   int blocktype=vbi->blocktype;
306
307   /* we differentiate between short and long block types to help the
308      masking engine; the window shapes also matter.
309      impulse block (a short block in which an impulse occurs)
310      padding block (a short block that pads between a transitional 
311           long block and an impulse block, or vice versa)
312      transition block (the wqeird one; a long block with the transition 
313           window; affects bass/midrange response and that must be 
314           accounted for in masking) 
315      long block (run of the mill long block)
316   */
317
318   for(i=0;i<vi->channels;i++){
319     float scale=4.f/n;
320
321     /* the following makes things clearer to *me* anyway */
322     float *pcm     =vb->pcm[i]; 
323     float *fft     =work;
324     float *logfft  =pcm+n/2;
325
326     /*float *res     =pcm;
327     float *mdct    =pcm;
328     float *codedflr=pcm+n/2;
329     float *logmax  =work;
330     float *logmask =work+n/2;*/
331
332     _analysis_output("pcm",seq+i,pcm,n,0,0);
333
334     /* window the PCM data */
335     for(j=0;j<n;j++)
336       fft[j]=pcm[j]*=window[j];
337     
338     //_analysis_output("windowed",seq+i,pcm,n,0,0);
339
340     /* transform the PCM data */
341     /* only MDCT right now.... */
342     mdct_forward(b->transform[vb->W][0],pcm,pcm);
343     
344     /* FFT yields more accurate tonal estimation (not phase sensitive) */
345     drft_forward(&look->fft_look,fft);
346     fft[0]*=scale;
347     logfft[0]=todB(fft);
348     local_ampmax[i]=logfft[0];
349     for(j=1;j<n-1;j+=2){
350       float temp=scale*FAST_HYPOT(fft[j],fft[j+1]);
351       temp=logfft[(j+1)>>1]=todB(&temp);
352       if(temp>local_ampmax[i])local_ampmax[i]=temp;
353     }
354
355     if(local_ampmax[i]>0.f)local_ampmax[i]=0.f;
356     if(local_ampmax[i]>global_ampmax)global_ampmax=local_ampmax[i];
357
358     _analysis_output("fft",seq+i,logfft,n/2,1,0);
359   }
360
361   for(i=0;i<vi->channels;i++){
362     int submap=info->chmuxlist[i];
363
364     /* the following makes things clearer to *me* anyway */
365     float *mdct    =vb->pcm[i]; 
366     float *res     =mdct;
367     float *codedflr=mdct+n/2;
368     float *logfft  =mdct+n/2;
369
370     float *logmdct =work;
371     float *logmax  =mdct+n/2;
372     float *logmask =work+n/2;
373
374     for(j=0;j<n/2;j++)
375       logmdct[j]=todB(mdct+j);
376     _analysis_output("mdct",seq+i,logmdct,n/2,1,0);
377
378
379     /* perform psychoacoustics; do masking */
380     _vp_compute_mask(look->psy_look[blocktype],
381                      b->psy_g_look,
382                      i,
383                      logfft, /* -> logmax */
384                      logmdct,
385                      logmask,
386                      global_ampmax,
387                      local_ampmax[i],
388                      ci->blocksizes[vb->lW]/2,
389                      bm->avgnoise);
390
391     _analysis_output("mask",seq+i,logmask,n/2,1,0);
392     /* perform floor encoding */
393     nonzero[i]=look->floor_func[submap]->
394       forward(vb,look->floor_look[submap],
395               mdct,
396               logmdct,
397               logmask,
398               logmax,
399
400               codedflr);
401
402
403     _vp_remove_floor(look->psy_look[blocktype],
404                      b->psy_g_look,
405                      logmdct,
406                      mdct,
407                      codedflr,
408                      res,
409                      local_ampmax[i]);
410
411     /*for(j=0;j<n/2;j++)
412       if(fabs(res[j])>1200){
413         analysis_noisy=1;
414         fprintf(stderr,"%ld ",seq+i);
415         }*/
416
417     //_analysis_output("res",seq+i,res,n/2,1,0);
418     _analysis_output("codedflr",seq+i,codedflr,n/2,1,1);
419       
420   }
421
422   vbi->ampmax=global_ampmax;
423
424   /* partition based prequantization and channel coupling */
425   /* Steps in prequant and coupling:
426
427      classify by |mag| across all pcm vectors 
428
429      down-couple/down-quantize from perfect residue ->  quantized vector 
430      
431      do{ 
432         encode quantized vector; add encoded values to 'so-far' vector
433         more? [not yet at bitrate/not yet at target]
434           yes{
435               down-couple/down-quantize from perfect-'so-far' -> 
436                 quantized vector; when subtracting coupling, 
437                 account for +/- out-of-phase component
438           }no{  
439               break
440           }
441      }
442      done.
443
444      quantization in each iteration is done (after circular normalization 
445      in coupling) using a by-iteration quantization granule value.
446   */
447    
448   {
449     float  **pcm=vb->pcm;
450     float  **quantized=alloca(sizeof(*quantized)*vi->channels);
451     float  **sofar=alloca(sizeof(*sofar)*vi->channels);
452
453     long  ***classifications=alloca(sizeof(*classifications)*info->submaps);
454     float ***qbundle=alloca(sizeof(*qbundle)*info->submaps);
455     float ***pcmbundle=alloca(sizeof(*pcmbundle)*info->submaps);
456     float ***sobundle=alloca(sizeof(*sobundle)*info->submaps);
457     int    **zerobundle=alloca(sizeof(*zerobundle)*info->submaps);
458     int     *chbundle=alloca(sizeof(*chbundle)*info->submaps);
459     int      chcounter=0;
460
461     /* play a little loose with this abstraction */
462     int   quant_passes=ci->coupling_passes;
463
464     for(i=0;i<vi->channels;i++){
465       quantized[i]=_vorbis_block_alloc(vb,n*sizeof(*sofar[i]));
466       sofar[i]=quantized[i]+n/2;
467       memset(sofar[i],0,sizeof(*sofar[i])*n/2);
468     }
469
470     qbundle[0]=alloca(sizeof(*qbundle[0])*vi->channels);
471     pcmbundle[0]=alloca(sizeof(*pcmbundle[0])*vi->channels);
472     sobundle[0]=alloca(sizeof(*sobundle[0])*vi->channels);
473     zerobundle[0]=alloca(sizeof(*zerobundle[0])*vi->channels);
474
475     /* initial down-quantized coupling */
476     
477     if(info->coupling_steps==0){
478       /* this assumes all or nothing coupling right now.  it should pass
479          through any channels left uncoupled, but it doesn't do that now */
480       for(i=0;i<vi->channels;i++){
481         float *lpcm=pcm[i];
482         float *lqua=quantized[i];
483         for(j=0;j<n/2;j++)
484           lqua[j]=lpcm[j];
485       }
486     }else{
487       _vp_quantize_couple(look->psy_look[blocktype],
488                           info,
489                           pcm,
490                           sofar,
491                           quantized,
492                           nonzero,
493                           0);
494     }
495
496     //for(i=0;i<vi->channels;i++)
497     //_analysis_output("quant",seq+i,quantized[i],n/2,1,0);
498
499   
500     /* classify, by submap */
501
502     for(i=0;i<info->submaps;i++){
503       int ch_in_bundle=0;
504       qbundle[i]=qbundle[0]+chcounter;
505       sobundle[i]=sobundle[0]+chcounter;
506       zerobundle[i]=zerobundle[0]+chcounter;
507
508       for(j=0;j<vi->channels;j++){
509         if(info->chmuxlist[j]==i){
510           if(nonzero[j])
511             zerobundle[i][ch_in_bundle]=1;
512           else
513             zerobundle[i][ch_in_bundle]=0;
514           qbundle[i][ch_in_bundle]=quantized[j];
515           pcmbundle[i][ch_in_bundle]=pcm[j];
516           sobundle[i][ch_in_bundle++]=sofar[j];
517         }
518       }
519       chbundle[i]=ch_in_bundle;
520       chcounter+=ch_in_bundle;
521
522       classifications[i]=look->residue_func[i]->
523         class(vb,look->residue_look[i],pcmbundle[i],zerobundle[i],chbundle[i]);
524     }
525
526     /* actual encoding loop; we pack all the iterations to collect
527        management data */
528
529     for(i=0;i<quant_passes;){
530
531       /* perform residue encoding of this pass's quantized residue
532          vector, according residue mapping */
533     
534       for(j=0;j<info->submaps;j++){
535         look->residue_func[j]->
536           forward(vb,look->residue_look[j],
537                   qbundle[j],sobundle[j],zerobundle[j],chbundle[j],
538                   i,classifications[j],vbi->packet_markers);
539         
540       }
541       i++;
542         
543       if(i<quant_passes){
544         /* down-couple/down-quantize from perfect-'so-far' -> 
545          new quantized vector */
546         if(info->coupling_steps==0){
547           /* this assumes all or nothing coupling right now.  it should pass
548              through any channels left uncoupled, but it doesn't do that now */
549           int k;
550           for(k=0;k<vi->channels;k++){
551             float *lpcm=pcm[k];
552             float *lsof=sofar[k];
553             float *lqua=quantized[k];
554             for(j=0;j<n/2;j++)
555               lqua[j]=lpcm[j]-lsof[j];
556           }
557         }else{
558           char buf[80];
559           
560           _vp_quantize_couple(look->psy_look[blocktype],
561                               info,
562                               pcm,
563                               sofar,
564                               quantized,
565                               nonzero,
566                               i);
567           
568           //sprintf(buf,"quant%d",i);
569           //for(j=0;j<vi->channels;j++)
570           //_analysis_output(buf,seq+j,quantized[j],n/2,1,0);
571           
572         }
573       }
574     }
575     seq+=vi->channels;
576   } 
577
578   look->lastframe=vb->sequence;
579   return(0);
580 }
581
582 static int mapping0_inverse(vorbis_block *vb,vorbis_look_mapping *l){
583   vorbis_dsp_state     *vd=vb->vd;
584   vorbis_info          *vi=vd->vi;
585   codec_setup_info     *ci=vi->codec_setup;
586   backend_lookup_state *b=vd->backend_state;
587   vorbis_look_mapping0 *look=(vorbis_look_mapping0 *)l;
588   vorbis_info_mapping0 *info=look->map;
589   vorbis_info_mode     *mode=look->mode;
590   int                   i,j;
591   long                  n=vb->pcmend=ci->blocksizes[vb->W];
592
593   float *window=b->window[vb->W][vb->lW][vb->nW][mode->windowtype];
594   float **pcmbundle=alloca(sizeof(*pcmbundle)*vi->channels);
595   int    *zerobundle=alloca(sizeof(*zerobundle)*vi->channels);
596
597   int   *nonzero  =alloca(sizeof(*nonzero)*vi->channels);
598   void **floormemo=alloca(sizeof(*floormemo)*vi->channels);
599   
600   /* time domain information decode (note that applying the
601      information would have to happen later; we'll probably add a
602      function entry to the harness for that later */
603   /* NOT IMPLEMENTED */
604
605   /* recover the spectral envelope; store it in the PCM vector for now */
606   for(i=0;i<vi->channels;i++){
607     int submap=info->chmuxlist[i];
608     floormemo[i]=look->floor_func[submap]->
609       inverse1(vb,look->floor_look[submap]);
610     if(floormemo[i])
611       nonzero[i]=1;
612     else
613       nonzero[i]=0;      
614     memset(vb->pcm[i],0,sizeof(*vb->pcm[i])*n/2);
615   }
616
617   /* channel coupling can 'dirty' the nonzero listing */
618   for(i=0;i<info->coupling_steps;i++){
619     if(nonzero[info->coupling_mag[i]] ||
620        nonzero[info->coupling_ang[i]]){
621       nonzero[info->coupling_mag[i]]=1; 
622       nonzero[info->coupling_ang[i]]=1; 
623     }
624   }
625
626   /* recover the residue into our working vectors */
627   for(i=0;i<info->submaps;i++){
628     int ch_in_bundle=0;
629     for(j=0;j<vi->channels;j++){
630       if(info->chmuxlist[j]==i){
631         if(nonzero[j])
632           zerobundle[ch_in_bundle]=1;
633         else
634           zerobundle[ch_in_bundle]=0;
635         pcmbundle[ch_in_bundle++]=vb->pcm[j];
636       }
637     }
638     
639     look->residue_func[i]->inverse(vb,look->residue_look[i],
640                                    pcmbundle,zerobundle,ch_in_bundle);
641   }
642
643   /* channel coupling */
644   for(i=info->coupling_steps-1;i>=0;i--){
645     float *pcmM=vb->pcm[info->coupling_mag[i]];
646     float *pcmA=vb->pcm[info->coupling_ang[i]];
647
648     for(j=0;j<n/2;j++){
649       float mag=pcmM[j];
650       float ang=pcmA[j];
651
652       if(mag>0)
653         if(ang>0){
654           pcmM[j]=mag;
655           pcmA[j]=mag-ang;
656         }else{
657           pcmA[j]=mag;
658           pcmM[j]=mag+ang;
659         }
660       else
661         if(ang>0){
662           pcmM[j]=mag;
663           pcmA[j]=mag+ang;
664         }else{
665           pcmA[j]=mag;
666           pcmM[j]=mag-ang;
667         }
668     }
669   }
670
671   /* compute and apply spectral envelope */
672   for(i=0;i<vi->channels;i++){
673     float *pcm=vb->pcm[i];
674     int submap=info->chmuxlist[i];
675     look->floor_func[submap]->
676       inverse2(vb,look->floor_look[submap],floormemo[i],pcm);
677   }
678
679   /* transform the PCM data; takes PCM vector, vb; modifies PCM vector */
680   /* only MDCT right now.... */
681   for(i=0;i<vi->channels;i++){
682     float *pcm=vb->pcm[i];
683     //_analysis_output("out",seq+i,pcm,n/2,1,1);
684     //_analysis_output("lout",seq+i,pcm,n/2,0,0);
685     mdct_backward(b->transform[vb->W][0],pcm,pcm);
686   }
687
688   /* window the data */
689   for(i=0;i<vi->channels;i++){
690     float *pcm=vb->pcm[i];
691     if(nonzero[i])
692       for(j=0;j<n;j++)
693         pcm[j]*=window[j];
694     else
695       for(j=0;j<n;j++)
696         pcm[j]=0.f;
697
698     //_analysis_output("final",seq,pcm,n,0,0);
699   }
700             
701   /* now apply the decoded post-window time information */
702   /* NOT IMPLEMENTED */
703
704   fprintf(stderr,"seq %d\r",seq);
705     
706   /* all done! */
707   return(0);
708 }
709
710 /* export hooks */
711 vorbis_func_mapping mapping0_exportbundle={
712   &mapping0_pack,
713   &mapping0_unpack,
714   &mapping0_look,
715   &mapping0_copy_info,
716   &mapping0_free_info,
717   &mapping0_free_look,
718   &mapping0_forward,
719   &mapping0_inverse
720 };