File: quant_bands.c

package info (click to toggle)
celt 0.4.0-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,200 kB
  • ctags: 1,214
  • sloc: ansic: 10,478; sh: 8,960; makefile: 123
file content (367 lines) | stat: -rw-r--r-- 10,824 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
/* (C) 2007-2008 Jean-Marc Valin, CSIRO
*/
/*
   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions
   are met:
   
   - Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
   
   - Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
   
   - Neither the name of the Xiph.org Foundation nor the names of its
   contributors may be used to endorse or promote products derived from
   this software without specific prior written permission.
   
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "quant_bands.h"
#include "laplace.h"
#include <math.h>
#include "os_support.h"
#include "arch.h"
#include "mathops.h"
#include "stack_alloc.h"

#ifdef FIXED_POINT
const celt_word16_t eMeans[24] = {11520, -2048, -3072, -640, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
#else
const celt_word16_t eMeans[24] = {45.f, -8.f, -12.f, -2.5f, 1.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f};
#endif

/*const int frac[24] = {4, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2};*/
/*const int frac[24] = {8, 6, 5, 4, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2};*/

static void compute_fine_allocation(const CELTMode *m, celt_int16_t *bits, int budget)
{
   int i,j;
   int len;
   len = m->nbEBands;
   for (i=0;i<m->nbAllocVectors;i++)
   {
      if (m->energy_alloc[i*(len+1)+len] > budget)
         break;
   }
   if (i==0)
   {
      for (j=0;j<len;j++)
         bits[j] = 0;
   } else {
      for (j=0;j<len;j++)
         bits[j] = m->energy_alloc[(i-1)*(len+1)+j];
      budget -= m->energy_alloc[(i-1)*(len+1)+len];
   }
   if (i<m->nbAllocVectors)
   {
      j=0;
      while (budget>0)
      {
         if (m->energy_alloc[i*(len+1)+j]>bits[j])
         {
            bits[j]++;
            budget--;
         }
         j++;
         if (j>=len)
            j=0;
      }
   }
   
   /*for (j=0;j<len;j++)
      printf ("%d ", bits[j]);
   printf ("\n");*/
}

#ifdef FIXED_POINT
static inline celt_ener_t dB2Amp(celt_ener_t dB)
{
   celt_ener_t amp;
   amp = PSHR32(celt_exp2(MULT16_16_Q14(21771,dB)),2)-QCONST16(.3f, 14);
   if (amp < 0)
      amp = 0;
   return amp;
}

#define DBofTWO 24661
static inline celt_word16_t amp2dB(celt_ener_t amp)
{
   /* equivalent to return 6.0207*log2(.3+amp) */
   return ROUND16(MULT16_16(24661,celt_log2(ADD32(QCONST32(.3f,14),amp))),12);
   /* return DB_SCALING*20*log10(.3+ENER_SCALING_1*amp); */
}
#else
static inline celt_ener_t dB2Amp(celt_ener_t dB)
{
   celt_ener_t amp;
   amp = pow(10, .05*dB)-.3;
   if (amp < 0)
      amp = 0;
   return amp;
}
static inline celt_word16_t amp2dB(celt_ener_t amp)
{
   return 20*log10(.3+amp);
}
#endif

static const celt_word16_t base_resolution = QCONST16(6.f,8);

int *quant_prob_alloc(const CELTMode *m)
{
   int i;
   int *prob;
   prob = celt_alloc(2*m->nbEBands*sizeof(int));
   for (i=0;i<m->nbEBands;i++)
   {
      prob[2*i] = 6000-i*200;
      prob[2*i+1] = ec_laplace_get_start_freq(prob[2*i]);
   }
   return prob;
}

void quant_prob_free(int *freq)
{
   celt_free(freq);
}

static void quant_energy_mono(const CELTMode *m, celt_ener_t *eBands, celt_word16_t *oldEBands, unsigned budget, int *prob, ec_enc *enc)
{
   int i;
   unsigned bits;
   celt_word16_t prev = 0;
   celt_word16_t coef = m->ePredCoef;
   celt_word16_t beta;
   VARDECL(celt_word16_t, error);
   VARDECL(celt_int16_t, fine_quant);
   SAVE_STACK;
   /* The .7 is a heuristic */
   beta = MULT16_16_Q15(QCONST16(.8f,15),coef);
   
   ALLOC(error, m->nbEBands, celt_word16_t);
   ALLOC(fine_quant, m->nbEBands, celt_int16_t);
   bits = ec_enc_tell(enc, 0);
   /* Encode at a fixed coarse resolution */
   for (i=0;i<m->nbEBands;i++)
   {
      int qi;
      celt_word16_t q;   /* dB */
      celt_word16_t x;   /* dB */
      celt_word16_t f;   /* Q8 */
      celt_word16_t mean = MULT16_16_Q15(Q15ONE-coef,eMeans[i]);
      x = amp2dB(eBands[i]);
      f = EXTRACT16(celt_div(SHL32(EXTEND32(x-mean-MULT16_16_Q15(coef,oldEBands[i])-prev),8),base_resolution));
#ifdef FIXED_POINT
      /* Rounding to nearest integer here is really important! */
      qi = (f+128)>>8;
#else
      qi = (int)floor(.5+f);
#endif
      /* If we don't have enough bits to encode all the energy, just assume something safe.
         We allow slightly busting the budget here */
      if (ec_enc_tell(enc, 0) - bits > budget+16)
         qi = -1;
      else
         ec_laplace_encode_start(enc, &qi, prob[2*i], prob[2*i+1]);
      q = qi*base_resolution;
      error[i] = f - SHL16(qi,8);
      
      oldEBands[i] = mean+MULT16_16_Q15(coef,oldEBands[i])+prev+q;
      if (oldEBands[i] < -QCONST16(12.f,8))
         oldEBands[i] = -QCONST16(12.f,8);
      prev = mean+prev+MULT16_16_Q15(Q15ONE-beta,q);
   }
   
   compute_fine_allocation(m, fine_quant, budget-(ec_enc_tell(enc, 0)-bits));

   /* Encode finer resolution */
   for (i=0;i<m->nbEBands;i++)
   {
      int q2;
      celt_int16_t frac = 1<<fine_quant[i];
      celt_word16_t offset = (error[i]+QCONST16(.5f,8))*frac;
      if (fine_quant[i] <= 0)
         continue;
#ifdef FIXED_POINT
      /* Has to be without rounding */
      q2 = offset>>8;
#else
      q2 = (int)floor(offset);
#endif
      if (q2 > frac-1)
         q2 = frac-1;
      ec_enc_bits(enc, q2, fine_quant[i]);
      offset = EXTRACT16(celt_div(SHL16(q2,8)+QCONST16(.5,8),frac)-QCONST16(.5f,8));
      oldEBands[i] += PSHR32(MULT16_16(DB_SCALING*6,offset),8);
      /*printf ("%f ", error[i] - offset);*/
   }
   for (i=0;i<m->nbEBands;i++)
   {
      eBands[i] = dB2Amp(oldEBands[i]);
   }
   /*printf ("%d\n", ec_enc_tell(enc, 0)-9);*/

   /*printf ("\n");*/
   RESTORE_STACK;
}

static void unquant_energy_mono(const CELTMode *m, celt_ener_t *eBands, celt_word16_t *oldEBands, unsigned budget, int *prob, ec_dec *dec)
{
   int i;
   unsigned bits;
   celt_word16_t prev = 0;
   celt_word16_t coef = m->ePredCoef;
   /* The .7 is a heuristic */
   VARDECL(celt_int16_t, fine_quant);
   celt_word16_t beta = MULT16_16_Q15(QCONST16(.8f,15),coef);
   SAVE_STACK;
   
   ALLOC(fine_quant, m->nbEBands, celt_int16_t);
   bits = ec_dec_tell(dec, 0);
   
   /* Decode at a fixed coarse resolution */
   for (i=0;i<m->nbEBands;i++)
   {
      int qi;
      celt_word16_t q;
      celt_word16_t mean = MULT16_16_Q15(Q15ONE-coef,eMeans[i]);
      /* If we didn't have enough bits to encode all the energy, just assume something safe.
         We allow slightly busting the budget here */
      if (ec_dec_tell(dec, 0) - bits > budget+16)
         qi = -1;
      else
         qi = ec_laplace_decode_start(dec, prob[2*i], prob[2*i+1]);
      q = qi*base_resolution;
      
      oldEBands[i] = mean+MULT16_16_Q15(coef,oldEBands[i])+prev+q;
      if (oldEBands[i] < -QCONST16(12.f,8))
         oldEBands[i] = -QCONST16(12.f,8);
      
      prev = mean+prev+MULT16_16_Q15(Q15ONE-beta,q);
   }
   
   compute_fine_allocation(m, fine_quant, budget-(ec_dec_tell(dec, 0)-bits));

   /* Decode finer resolution */
   for (i=0;i<m->nbEBands;i++)
   {
      int q2;
      celt_int16_t frac = 1<<fine_quant[i];
      celt_word16_t offset;
      if (fine_quant[i] <= 0)
         continue;
      q2 = ec_dec_bits(dec, fine_quant[i]);
      offset = EXTRACT16(celt_div(SHL16(q2,8)+QCONST16(.5,8),frac)-QCONST16(.5f,8));
      oldEBands[i] += PSHR32(MULT16_16(DB_SCALING*6,offset),8);
   }
   for (i=0;i<m->nbEBands;i++)
   {
      eBands[i] = dB2Amp(oldEBands[i]);
   }
   RESTORE_STACK;
   /*printf ("\n");*/
}



void quant_energy(const CELTMode *m, celt_ener_t *eBands, celt_word16_t *oldEBands, int budget, int *prob, ec_enc *enc)
{
   int C;
   SAVE_STACK;
   
   C = m->nbChannels;

   if (C==1)
      quant_energy_mono(m, eBands, oldEBands, budget, prob, enc);
   else 
#if 1
   {
      int c;
      VARDECL(celt_ener_t, E);
      ALLOC(E, m->nbEBands, celt_ener_t);
      for (c=0;c<C;c++)
      {
         int i;
         for (i=0;i<m->nbEBands;i++)
            E[i] = eBands[C*i+c];
         quant_energy_mono(m, E, oldEBands+c*m->nbEBands, budget/C, prob, enc);
         for (i=0;i<m->nbEBands;i++)
            eBands[C*i+c] = E[i];
      }
   }
#else
      if (C==2)
   {
      int i;
      int NB = m->nbEBands;
      celt_ener_t mid[NB];
      celt_ener_t side[NB];
      for (i=0;i<NB;i++)
      {
         //left = eBands[C*i];
         //right = eBands[C*i+1];
         mid[i] = ENER_SCALING_1*sqrt(eBands[C*i]*eBands[C*i] + eBands[C*i+1]*eBands[C*i+1]);
         side[i] = 20*log10((ENER_SCALING_1*eBands[2*i]+.3)/(ENER_SCALING_1*eBands[2*i+1]+.3));
         //printf ("%f %f ", mid[i], side[i]);
      }
      //printf ("\n");
      quant_energy_mono(m, mid, oldEBands, enc);
      for (i=0;i<NB;i++)
         side[i] = pow(10.f,floor(.5f+side[i])/10.f);
         
      //quant_energy_side(m, side, oldEBands+NB, enc);
      for (i=0;i<NB;i++)
      {
         eBands[C*i] = ENER_SCALING*mid[i]*sqrt(side[i]/(1.f+side[i]));
         eBands[C*i+1] = ENER_SCALING*mid[i]*sqrt(1.f/(1.f+side[i]));
         //printf ("%f %f ", mid[i], side[i]);
      }

   } else {
      celt_fatal("more than 2 channels not supported");
   }
#endif
   RESTORE_STACK;
}



void unquant_energy(const CELTMode *m, celt_ener_t *eBands, celt_word16_t *oldEBands, int budget, int *prob, ec_dec *dec)
{
   int C;   
   SAVE_STACK;
   C = m->nbChannels;

   if (C==1)
      unquant_energy_mono(m, eBands, oldEBands, budget, prob, dec);
   else {
      int c;
      VARDECL(celt_ener_t, E);
      ALLOC(E, m->nbEBands, celt_ener_t);
      for (c=0;c<C;c++)
      {
         int i;
         unquant_energy_mono(m, E, oldEBands+c*m->nbEBands, budget/C, prob, dec);
         for (i=0;i<m->nbEBands;i++)
            eBands[C*i+c] = E[i];
      }
   }
   RESTORE_STACK;
}