Merge branch_beta3 onto the mainline.
[platform/upstream/libvorbis.git] / lib / res0.c
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
5  * THE GNU LESSER/LIBRARY PUBLIC LICENSE, WHICH IS INCLUDED WITH    *
6  * THIS SOURCE. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.        *
7  *                                                                  *
8  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
9  * by Monty <monty@xiph.org> and the XIPHOPHORUS Company            *
10  * http://www.xiph.org/                                             *
11  *                                                                  *
12  ********************************************************************
13
14  function: residue backend 0 implementation
15  last mod: $Id: res0.c,v 1.19 2000/11/06 00:07:02 xiphmont Exp $
16
17  ********************************************************************/
18
19 /* Slow, slow, slow, simpleminded and did I mention it was slow?  The
20    encode/decode loops are coded for clarity and performance is not
21    yet even a nagging little idea lurking in the shadows.  Oh and BTW,
22    it's slow. */
23
24 #include <stdlib.h>
25 #include <string.h>
26 #include <math.h>
27 #include <stdio.h>
28 #include <ogg/ogg.h>
29 #include "vorbis/codec.h"
30 #include "codec_internal.h"
31 #include "registry.h"
32 #include "codebook.h"
33 #include "misc.h"
34 #include "os.h"
35
36 typedef struct {
37   vorbis_info_residue0 *info;
38   int         map;
39   
40   int         parts;
41   codebook   *phrasebook;
42   codebook ***partbooks;
43
44   int         partvals;
45   int       **decodemap;
46 } vorbis_look_residue0;
47
48 vorbis_info_residue *res0_copy_info(vorbis_info_residue *vr){
49   vorbis_info_residue0 *info=(vorbis_info_residue0 *)vr;
50   vorbis_info_residue0 *ret=_ogg_malloc(sizeof(vorbis_info_residue0));
51   memcpy(ret,info,sizeof(vorbis_info_residue0));
52   return(ret);
53 }
54
55 void res0_free_info(vorbis_info_residue *i){
56   if(i){
57     memset(i,0,sizeof(vorbis_info_residue0));
58     free(i);
59   }
60 }
61
62 void res0_free_look(vorbis_look_residue *i){
63   int j;
64   if(i){
65     vorbis_look_residue0 *look=(vorbis_look_residue0 *)i;
66     for(j=0;j<look->parts;j++)
67       if(look->partbooks[j])free(look->partbooks[j]);
68     free(look->partbooks);
69     for(j=0;j<look->partvals;j++)
70       free(look->decodemap[j]);
71     free(look->decodemap);
72     memset(i,0,sizeof(vorbis_look_residue0));
73     free(i);
74   }
75 }
76
77 void res0_pack(vorbis_info_residue *vr,oggpack_buffer *opb){
78   vorbis_info_residue0 *info=(vorbis_info_residue0 *)vr;
79   int j,acc=0;
80   oggpack_write(opb,info->begin,24);
81   oggpack_write(opb,info->end,24);
82
83   oggpack_write(opb,info->grouping-1,24);  /* residue vectors to group and 
84                                              code with a partitioned book */
85   oggpack_write(opb,info->partitions-1,6); /* possible partition choices */
86   oggpack_write(opb,info->groupbook,8);  /* group huffman book */
87   for(j=0;j<info->partitions;j++){
88     oggpack_write(opb,info->secondstages[j],4); /* zero *is* a valid choice */
89     acc+=info->secondstages[j];
90   }
91   for(j=0;j<acc;j++)
92     oggpack_write(opb,info->booklist[j],8);
93
94 }
95
96 /* vorbis_info is for range checking */
97 vorbis_info_residue *res0_unpack(vorbis_info *vi,oggpack_buffer *opb){
98   int j,acc=0;
99   vorbis_info_residue0 *info=_ogg_calloc(1,sizeof(vorbis_info_residue0));
100   codec_setup_info     *ci=vi->codec_setup;
101
102   info->begin=oggpack_read(opb,24);
103   info->end=oggpack_read(opb,24);
104   info->grouping=oggpack_read(opb,24)+1;
105   info->partitions=oggpack_read(opb,6)+1;
106   info->groupbook=oggpack_read(opb,8);
107   for(j=0;j<info->partitions;j++){
108     int cascade=info->secondstages[j]=oggpack_read(opb,4);
109     if(cascade>1)goto errout; /* temporary!  when cascading gets
110                                  reworked and actually used, we don't
111                                  want old code to DTWT */
112     acc+=cascade;
113   }
114   for(j=0;j<acc;j++)
115     info->booklist[j]=oggpack_read(opb,8);
116
117   if(info->groupbook>=ci->books)goto errout;
118   for(j=0;j<acc;j++)
119     if(info->booklist[j]>=ci->books)goto errout;
120
121   return(info);
122  errout:
123   res0_free_info(info);
124   return(NULL);
125 }
126
127 vorbis_look_residue *res0_look (vorbis_dsp_state *vd,vorbis_info_mode *vm,
128                           vorbis_info_residue *vr){
129   vorbis_info_residue0 *info=(vorbis_info_residue0 *)vr;
130   vorbis_look_residue0 *look=_ogg_calloc(1,sizeof(vorbis_look_residue0));
131   backend_lookup_state *be=vd->backend_state;
132
133   int j,k,acc=0;
134   int dim;
135   look->info=info;
136   look->map=vm->mapping;
137
138   look->parts=info->partitions;
139   look->phrasebook=be->fullbooks+info->groupbook;
140   dim=look->phrasebook->dim;
141
142   look->partbooks=_ogg_calloc(look->parts,sizeof(codebook **));
143
144   for(j=0;j<look->parts;j++){
145     int stages=info->secondstages[j];
146     if(stages){
147       look->partbooks[j]=_ogg_malloc(stages*sizeof(codebook *));
148       for(k=0;k<stages;k++)
149         look->partbooks[j][k]=be->fullbooks+info->booklist[acc++];
150     }
151   }
152
153   look->partvals=rint(pow(look->parts,dim));
154   look->decodemap=_ogg_malloc(look->partvals*sizeof(int *));
155   for(j=0;j<look->partvals;j++){
156     long val=j;
157     long mult=look->partvals/look->parts;
158     look->decodemap[j]=_ogg_malloc(dim*sizeof(int));
159     for(k=0;k<dim;k++){
160       long deco=val/mult;
161       val-=deco*mult;
162       mult/=look->parts;
163       look->decodemap[j][k]=deco;
164     }
165   }
166
167   return(look);
168 }
169
170
171 /* does not guard against invalid settings; eg, a subn of 16 and a
172    subgroup request of 32.  Max subn of 128 */
173 static int _testhack(float *vec,int n,vorbis_look_residue0 *look,
174                      int auxparts,int auxpartnum){
175   vorbis_info_residue0 *info=look->info;
176   int i,j=0;
177   float max,localmax=0.;
178   float temp[128];
179   float entropy[8];
180
181   /* setup */
182   for(i=0;i<n;i++)temp[i]=fabs(vec[i]);
183
184   /* handle case subgrp==1 outside */
185   for(i=0;i<n;i++)
186     if(temp[i]>localmax)localmax=temp[i];
187   max=localmax;
188
189   for(i=0;i<n;i++)temp[i]=rint(temp[i]);
190   
191   while(1){
192     entropy[j]=localmax;
193     n>>=1;
194     j++;
195
196     if(n<=0)break;
197     for(i=0;i<n;i++){
198       temp[i]+=temp[i+n];
199     }
200     localmax=0.;
201     for(i=0;i<n;i++)
202       if(temp[i]>localmax)localmax=temp[i];
203   }
204
205   for(i=0;i<auxparts-1;i++)
206     if(auxpartnum<info->blimit[i] &&
207        entropy[info->subgrp[i]]<=info->entmax[i] &&
208        max<=info->ampmax[i])
209       break;
210
211   return(i);
212 }
213
214 static int _encodepart(oggpack_buffer *opb,float *vec, int n,
215                        int stages, codebook **books,int mode,int part){
216   int i,j,bits=0;
217
218   for(j=0;j<stages;j++){
219     int dim=books[j]->dim;
220     int step=n/dim;
221     for(i=0;i<step;i++){
222       int entry=vorbis_book_besterror(books[j],vec+i,step,0);
223 #ifdef TRAIN_RESENT      
224       {
225         char buf[80];
226         FILE *f;
227         sprintf(buf,"res0_%da%d_%d.vqd",mode,j,part);
228         f=fopen(buf,"a");
229         fprintf(f,"%d\n",entry);
230         fclose(f);
231       }
232 #endif
233       bits+=vorbis_book_encode(books[j],entry,opb);
234     }
235   }
236
237   return(bits);
238 }
239
240 static int _decodepart(oggpack_buffer *opb,float *work,float *vec, int n,
241                        int stages, codebook **books){
242   int i;
243   
244   memset(work,0,sizeof(float)*n);
245   for(i=0;i<stages;i++){
246     int dim=books[i]->dim;
247     int step=n/dim;
248     if(s_vorbis_book_decodevs(books[i],work,opb,step,0)==-1)
249       return(-1);
250   }
251   
252   for(i=0;i<n;i++)
253     vec[i]*=work[i];
254   
255   return(0);
256 }
257
258 int res0_forward(vorbis_block *vb,vorbis_look_residue *vl,
259             float **in,int ch){
260   long i,j,k,l;
261   vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl;
262   vorbis_info_residue0 *info=look->info;
263
264   /* move all this setup out later */
265   int samples_per_partition=info->grouping;
266   int possible_partitions=info->partitions;
267   int partitions_per_word=look->phrasebook->dim;
268   int n=info->end-info->begin;
269   long phrasebits=0,resbitsT=0;
270   long *resbits=alloca(sizeof(long)*possible_partitions);
271   long *resvals=alloca(sizeof(long)*possible_partitions);
272
273   int partvals=n/samples_per_partition;
274   int partwords=(partvals+partitions_per_word-1)/partitions_per_word;
275   long **partword=_vorbis_block_alloc(vb,ch*sizeof(long *));
276
277   partvals=partwords*partitions_per_word;
278
279   /* we find the patition type for each partition of each
280      channel.  We'll go back and do the interleaved encoding in a
281      bit.  For now, clarity */
282   
283   memset(resbits,0,sizeof(long)*possible_partitions);
284   memset(resvals,0,sizeof(long)*possible_partitions);
285
286   for(i=0;i<ch;i++){
287     partword[i]=_vorbis_block_alloc(vb,n/samples_per_partition*sizeof(long));
288     memset(partword[i],0,n/samples_per_partition*sizeof(long));
289   }
290
291   for(i=info->begin,l=0;i<info->end;i+=samples_per_partition,l++){
292     for(j=0;j<ch;j++)
293       /* do the partition decision based on the number of 'bits'
294          needed to encode the block */
295       partword[j][l]=
296         _testhack(in[j]+i,samples_per_partition,look,possible_partitions,l);
297   
298   }
299   /* we code the partition words for each channel, then the residual
300      words for a partition per channel until we've written all the
301      residual words for that partition word.  Then write the next
302      partition channel words... */
303   
304   for(i=info->begin,l=0;i<info->end;){
305     /* first we encode a partition codeword for each channel */
306     for(j=0;j<ch;j++){
307       long val=partword[j][l];
308       for(k=1;k<partitions_per_word;k++)
309         val= val*possible_partitions+partword[j][l+k];
310       phrasebits+=vorbis_book_encode(look->phrasebook,val,&vb->opb);
311     }
312     /* now we encode interleaved residual values for the partitions */
313     for(k=0;k<partitions_per_word;k++,l++,i+=samples_per_partition)
314       for(j=0;j<ch;j++){
315         resbits[partword[j][l]]+=
316           _encodepart(&vb->opb,in[j]+i,samples_per_partition,
317                       info->secondstages[partword[j][l]],
318                       look->partbooks[partword[j][l]],look->map,partword[j][l]);
319         resvals[partword[j][l]]+=samples_per_partition;
320       }
321       
322   }
323
324   for(i=0;i<possible_partitions;i++)resbitsT+=resbits[i];
325   /*fprintf(stderr,
326           "Encoded %ld res vectors in %ld phrasing and %ld res bits\n\t",
327           ch*(info->end-info->begin),phrasebits,resbitsT);
328   for(i=0;i<possible_partitions;i++)
329     fprintf(stderr,"%ld(%ld):%ld ",i,resvals[i],resbits[i]);
330     fprintf(stderr,"\n");*/
331  
332   return(0);
333 }
334
335 /* a truncated packet here just means 'stop working'; it's not an error */
336 int res0_inverse(vorbis_block *vb,vorbis_look_residue *vl,float **in,int ch){
337   long i,j,k,l,transend=vb->pcmend/2;
338   vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl;
339   vorbis_info_residue0 *info=look->info;
340
341   /* move all this setup out later */
342   int samples_per_partition=info->grouping;
343   int partitions_per_word=look->phrasebook->dim;
344   int n=info->end-info->begin;
345
346   int partvals=n/samples_per_partition;
347   int partwords=(partvals+partitions_per_word-1)/partitions_per_word;
348   int **partword=alloca(ch*sizeof(long *));
349   float *work=alloca(sizeof(float)*samples_per_partition);
350   partvals=partwords*partitions_per_word;
351
352   /* make sure we're zeroed up to the start */
353   for(j=0;j<ch;j++)
354     memset(in[j],0,sizeof(float)*info->begin);
355
356   for(i=info->begin,l=0;i<info->end;){
357     /* fetch the partition word for each channel */
358     for(j=0;j<ch;j++){
359       int temp=vorbis_book_decode(look->phrasebook,&vb->opb);
360       if(temp==-1)goto eopbreak;
361       partword[j]=look->decodemap[temp];
362       if(partword[j]==NULL)goto errout;
363     }
364     
365     /* now we decode interleaved residual values for the partitions */
366     for(k=0;k<partitions_per_word;k++,l++,i+=samples_per_partition)
367       for(j=0;j<ch;j++){
368         int part=partword[j][k];
369         if(_decodepart(&vb->opb,work,in[j]+i,samples_per_partition,
370                     info->secondstages[part],
371                        look->partbooks[part])==-1)goto eopbreak;
372       }
373   }
374
375  eopbreak:
376   if(i<transend){
377     for(j=0;j<ch;j++)
378       memset(in[j]+i,0,sizeof(float)*(transend-i));
379   }
380
381   return(0);
382
383  errout:
384   for(j=0;j<ch;j++)
385     memset(in[j],0,sizeof(float)*transend);
386   return(0);
387 }
388
389 vorbis_func_residue residue0_exportbundle={
390   &res0_pack,
391   &res0_unpack,
392   &res0_look,
393   &res0_copy_info,
394   &res0_free_info,
395   &res0_free_look,
396   &res0_forward,
397   &res0_inverse
398 };