Coverage Report

Created: 2026-01-16 07:48

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/fdk-aac/libAACdec/src/usacdec_lpc.cpp
Line
Count
Source
1
/* -----------------------------------------------------------------------------
2
Software License for The Fraunhofer FDK AAC Codec Library for Android
3
4
© Copyright  1995 - 2019 Fraunhofer-Gesellschaft zur Förderung der angewandten
5
Forschung e.V. All rights reserved.
6
7
 1.    INTRODUCTION
8
The Fraunhofer FDK AAC Codec Library for Android ("FDK AAC Codec") is software
9
that implements the MPEG Advanced Audio Coding ("AAC") encoding and decoding
10
scheme for digital audio. This FDK AAC Codec software is intended to be used on
11
a wide variety of Android devices.
12
13
AAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient
14
general perceptual audio codecs. AAC-ELD is considered the best-performing
15
full-bandwidth communications codec by independent studies and is widely
16
deployed. AAC has been standardized by ISO and IEC as part of the MPEG
17
specifications.
18
19
Patent licenses for necessary patent claims for the FDK AAC Codec (including
20
those of Fraunhofer) may be obtained through Via Licensing
21
(www.vialicensing.com) or through the respective patent owners individually for
22
the purpose of encoding or decoding bit streams in products that are compliant
23
with the ISO/IEC MPEG audio standards. Please note that most manufacturers of
24
Android devices already license these patent claims through Via Licensing or
25
directly from the patent owners, and therefore FDK AAC Codec software may
26
already be covered under those patent licenses when it is used for those
27
licensed purposes only.
28
29
Commercially-licensed AAC software libraries, including floating-point versions
30
with enhanced sound quality, are also available from Fraunhofer. Users are
31
encouraged to check the Fraunhofer website for additional applications
32
information and documentation.
33
34
2.    COPYRIGHT LICENSE
35
36
Redistribution and use in source and binary forms, with or without modification,
37
are permitted without payment of copyright license fees provided that you
38
satisfy the following conditions:
39
40
You must retain the complete text of this software license in redistributions of
41
the FDK AAC Codec or your modifications thereto in source code form.
42
43
You must retain the complete text of this software license in the documentation
44
and/or other materials provided with redistributions of the FDK AAC Codec or
45
your modifications thereto in binary form. You must make available free of
46
charge copies of the complete source code of the FDK AAC Codec and your
47
modifications thereto to recipients of copies in binary form.
48
49
The name of Fraunhofer may not be used to endorse or promote products derived
50
from this library without prior written permission.
51
52
You may not charge copyright license fees for anyone to use, copy or distribute
53
the FDK AAC Codec software or your modifications thereto.
54
55
Your modified versions of the FDK AAC Codec must carry prominent notices stating
56
that you changed the software and the date of any change. For modified versions
57
of the FDK AAC Codec, the term "Fraunhofer FDK AAC Codec Library for Android"
58
must be replaced by the term "Third-Party Modified Version of the Fraunhofer FDK
59
AAC Codec Library for Android."
60
61
3.    NO PATENT LICENSE
62
63
NO EXPRESS OR IMPLIED LICENSES TO ANY PATENT CLAIMS, including without
64
limitation the patents of Fraunhofer, ARE GRANTED BY THIS SOFTWARE LICENSE.
65
Fraunhofer provides no warranty of patent non-infringement with respect to this
66
software.
67
68
You may use this FDK AAC Codec software or modifications thereto only for
69
purposes that are authorized by appropriate patent licenses.
70
71
4.    DISCLAIMER
72
73
This FDK AAC Codec software is provided by Fraunhofer on behalf of the copyright
74
holders and contributors "AS IS" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES,
75
including but not limited to the implied warranties of merchantability and
76
fitness for a particular purpose. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
77
CONTRIBUTORS BE LIABLE for any direct, indirect, incidental, special, exemplary,
78
or consequential damages, including but not limited to procurement of substitute
79
goods or services; loss of use, data, or profits, or business interruption,
80
however caused and on any theory of liability, whether in contract, strict
81
liability, or tort (including negligence), arising in any way out of the use of
82
this software, even if advised of the possibility of such damage.
83
84
5.    CONTACT INFORMATION
85
86
Fraunhofer Institute for Integrated Circuits IIS
87
Attention: Audio and Multimedia Departments - FDK AAC LL
88
Am Wolfsmantel 33
89
91058 Erlangen, Germany
90
91
www.iis.fraunhofer.de/amm
92
amm-info@iis.fraunhofer.de
93
----------------------------------------------------------------------------- */
94
95
/**************************** AAC decoder library ******************************
96
97
   Author(s):   Matthias Hildenbrand, Manuel Jander
98
99
   Description: USAC LPC/AVQ decode
100
101
*******************************************************************************/
102
103
#include "usacdec_lpc.h"
104
105
#include "usacdec_rom.h"
106
#include "FDK_trigFcts.h"
107
108
12.3M
#define NQ_MAX 36
109
110
/*
111
 * Helper functions.
112
 */
113
114
/**
115
 * \brief Read unary code.
116
 * \param hBs bitstream handle as data source.
117
 * \return decoded value.
118
 */
119
5.78M
static int get_vlclbf(HANDLE_FDK_BITSTREAM hBs) {
120
5.78M
  int result = 0;
121
122
11.6M
  while (FDKreadBits(hBs, 1) && result <= NQ_MAX) {
123
5.83M
    result++;
124
5.83M
  }
125
5.78M
  return result;
126
5.78M
}
127
128
/**
129
 * \brief Read bit count limited unary code.
130
 * \param hBs bitstream handle as data source
131
 * \param n max amount of bits to be read.
132
 * \return decoded value.
133
 */
134
221k
static int get_vlclbf_n(HANDLE_FDK_BITSTREAM hBs, int n) {
135
221k
  int result = 0;
136
137
374k
  while (FDKreadBits(hBs, 1)) {
138
207k
    result++;
139
207k
    n--;
140
207k
    if (n <= 0) {
141
54.2k
      break;
142
54.2k
    }
143
207k
  }
144
145
221k
  return result;
146
221k
}
147
148
/*
149
 * Algebraic Vector Quantizer
150
 */
151
152
/* ZF_SCALE must be greater than (number of FIXP_ZF)/2
153
   because the loss of precision caused by fPow2Div2 in RE8_PPV() */
154
//#define ZF_SCALE ((NQ_MAX-3)>>1)
155
50.9M
#define ZF_SCALE ((DFRACT_BITS / 2))
156
14.0M
#define FIXP_ZF FIXP_DBL
157
39.7M
#define INT2ZF(x, s) (FIXP_ZF)((x) << (ZF_SCALE - (s)))
158
11.2M
#define ZF2INT(x) (INT)((x) >> ZF_SCALE)
159
160
/* 1.0 in ZF format format */
161
16.8M
#define ONEZF ((FIXP_ZF)INT2ZF(1, 0))
162
163
/* static */
164
1.40M
void nearest_neighbor_2D8(FIXP_ZF x[8], int y[8]) {
165
1.40M
  FIXP_ZF s, em, e[8];
166
1.40M
  int i, j, sum;
167
168
  /* round x into 2Z^8 i.e. compute y=(y1,...,y8) such that yi = 2[xi/2]
169
     where [.] is the nearest integer operator
170
     in the mean time, compute sum = y1+...+y8
171
  */
172
1.40M
  sum = 0;
173
12.6M
  for (i = 0; i < 8; i++) {
174
11.2M
    FIXP_ZF tmp;
175
    /* round to ..., -2, 0, 2, ... ([-1..1[ --> 0) */
176
11.2M
    if (x[i] < (FIXP_ZF)0) {
177
2.64M
      tmp = ONEZF - x[i];
178
2.64M
      y[i] = -2 * ((ZF2INT(tmp)) >> 1);
179
8.61M
    } else {
180
8.61M
      tmp = ONEZF + x[i];
181
8.61M
      y[i] = 2 * ((ZF2INT(tmp)) >> 1);
182
8.61M
    }
183
11.2M
    sum += y[i];
184
11.2M
  }
185
  /* check if y1+...+y8 is a multiple of 4
186
     if not, y is not round xj in the wrong way where j is defined by
187
        j = arg max_i | xi -yi|
188
     (this is called the Wagner rule)
189
  */
190
1.40M
  if (sum % 4) {
191
    /* find j = arg max_i | xi -yi| */
192
743k
    em = (FIXP_SGL)0;
193
743k
    j = 0;
194
6.68M
    for (i = 0; i < 8; i++) {
195
      /* compute ei = xi-yi */
196
5.94M
      e[i] = x[i] - INT2ZF(y[i], 0);
197
5.94M
    }
198
6.68M
    for (i = 0; i < 8; i++) {
199
      /* compute |ei| = | xi-yi | */
200
5.94M
      if (e[i] < (FIXP_ZF)0) {
201
1.99M
        s = -e[i];
202
3.94M
      } else {
203
3.94M
        s = e[i];
204
3.94M
      }
205
      /* check if |ei| is maximal, if so, set j=i */
206
5.94M
      if (em < s) {
207
897k
        em = s;
208
897k
        j = i;
209
897k
      }
210
5.94M
    }
211
    /* round xj in the "wrong way" */
212
743k
    if (e[j] < (FIXP_ZF)0) {
213
406k
      y[j] -= 2;
214
406k
    } else {
215
336k
      y[j] += 2;
216
336k
    }
217
743k
  }
218
1.40M
}
219
220
/*--------------------------------------------------------------
221
  RE8_PPV(x,y)
222
  NEAREST NEIGHBOR SEARCH IN INFINITE LATTICE RE8
223
  the algorithm is based on the definition of RE8 as
224
      RE8 = (2D8) U (2D8+[1,1,1,1,1,1,1,1])
225
  it applies the coset decoding of Sloane and Conway
226
  (i) x: point in R^8 in 32-ZF_SCALE.ZF_SCALE format
227
  (o) y: point in RE8 (8-dimensional integer vector)
228
  --------------------------------------------------------------
229
*/
230
/* static */
231
703k
void RE8_PPV(FIXP_ZF x[], SHORT y[], int r) {
232
703k
  int i, y0[8], y1[8];
233
703k
  FIXP_ZF x1[8], tmp;
234
703k
  INT64 e;
235
236
  /* find the nearest neighbor y0 of x in 2D8 */
237
703k
  nearest_neighbor_2D8(x, y0);
238
  /* find the nearest neighbor y1 of x in 2D8+(1,...,1) (by coset decoding) */
239
6.32M
  for (i = 0; i < 8; i++) {
240
5.62M
    x1[i] = x[i] - ONEZF;
241
5.62M
  }
242
703k
  nearest_neighbor_2D8(x1, y1);
243
6.32M
  for (i = 0; i < 8; i++) {
244
5.62M
    y1[i] += 1;
245
5.62M
  }
246
247
  /* compute e0=||x-y0||^2 and e1=||x-y1||^2 */
248
703k
  e = 0;
249
6.32M
  for (i = 0; i < 8; i++) {
250
5.62M
    tmp = x[i] - INT2ZF(y0[i], 0);
251
5.62M
    e += (INT64)fPow2Div2(
252
5.62M
        tmp << r); /* shift left to ensure that no fract part bits get lost. */
253
5.62M
    tmp = x[i] - INT2ZF(y1[i], 0);
254
5.62M
    e -= (INT64)fPow2Div2(tmp << r);
255
5.62M
  }
256
  /* select best candidate y0 or y1 to minimize distortion */
257
703k
  if (e < 0) {
258
2.54M
    for (i = 0; i < 8; i++) {
259
2.26M
      y[i] = y0[i];
260
2.26M
    }
261
420k
  } else {
262
3.78M
    for (i = 0; i < 8; i++) {
263
3.36M
      y[i] = y1[i];
264
3.36M
    }
265
420k
  }
266
703k
}
267
268
/* table look-up of unsigned value: find i where index >= table[i]
269
   Note: range must be >= 2, index must be >= table[0] */
270
5.68M
static int table_lookup(const USHORT *table, unsigned int index, int range) {
271
5.68M
  int i;
272
273
8.16M
  for (i = 4; i < range; i += 4) {
274
7.13M
    if (index < table[i]) {
275
4.66M
      break;
276
4.66M
    }
277
7.13M
  }
278
5.68M
  if (i > range) {
279
728k
    i = range;
280
728k
  }
281
282
5.68M
  if (index < table[i - 2]) {
283
3.47M
    i -= 2;
284
3.47M
  }
285
5.68M
  if (index < table[i - 1]) {
286
2.70M
    i--;
287
2.70M
  }
288
5.68M
  i--;
289
290
5.68M
  return (i); /* index >= table[i] */
291
5.68M
}
292
293
/*--------------------------------------------------------------------------
294
  re8_decode_rank_of_permutation(rank, xs, x)
295
  DECODING OF THE RANK OF THE PERMUTATION OF xs
296
  (i) rank: index (rank) of a permutation
297
  (i) xs:   signed leader in RE8 (8-dimensional integer vector)
298
  (o) x:    point in RE8 (8-dimensional integer vector)
299
  --------------------------------------------------------------------------
300
 */
301
2.84M
static void re8_decode_rank_of_permutation(int rank, int *xs, SHORT x[8]) {
302
2.84M
  INT a[8], w[8], B, fac, fac_B, target;
303
2.84M
  int i, j;
304
305
  /* --- pre-processing based on the signed leader xs ---
306
     - compute the alphabet a=[a[0] ... a[q-1]] of x (q elements)
307
       such that a[0]!=...!=a[q-1]
308
       it is assumed that xs is sorted in the form of a signed leader
309
       which can be summarized in 2 requirements:
310
          a) |xs[0]| >= |xs[1]| >= |xs[2]| >= ... >= |xs[7]|
311
          b) if |xs[i]|=|xs[i-1]|, xs[i]>=xs[i+1]
312
       where |.| indicates the absolute value operator
313
     - compute q (the number of symbols in the alphabet)
314
     - compute w[0..q-1] where w[j] counts the number of occurences of
315
       the symbol a[j] in xs
316
     - compute B = prod_j=0..q-1 (w[j]!) where .! is the factorial */
317
  /* xs[i], xs[i-1] and ptr_w/a*/
318
2.84M
  j = 0;
319
2.84M
  w[j] = 1;
320
2.84M
  a[j] = xs[0];
321
2.84M
  B = 1;
322
22.7M
  for (i = 1; i < 8; i++) {
323
19.9M
    if (xs[i] != xs[i - 1]) {
324
4.97M
      j++;
325
4.97M
      w[j] = 1;
326
4.97M
      a[j] = xs[i];
327
14.9M
    } else {
328
14.9M
      w[j]++;
329
14.9M
      B *= w[j];
330
14.9M
    }
331
19.9M
  }
332
333
  /* --- actual rank decoding ---
334
     the rank of x (where x is a permutation of xs) is based on
335
     Schalkwijk's formula
336
     it is given by rank=sum_{k=0..7} (A_k * fac_k/B_k)
337
     the decoding of this rank is sequential and reconstructs x[0..7]
338
     element by element from x[0] to x[7]
339
     [the tricky part is the inference of A_k for each k...]
340
   */
341
342
2.84M
  if (w[0] == 8) {
343
1.85M
    for (i = 0; i < 8; i++) {
344
1.65M
      x[i] = a[0]; /* avoid fac of 40320 */
345
1.65M
    }
346
2.63M
  } else {
347
2.63M
    target = rank * B;
348
2.63M
    fac_B = 1;
349
    /* decode x element by element */
350
23.7M
    for (i = 0; i < 8; i++) {
351
21.0M
      fac = fac_B * fdk_dec_tab_factorial[i]; /* fac = 1..5040 */
352
21.0M
      j = -1;
353
47.8M
      do {
354
47.8M
        target -= w[++j] * fac;
355
47.8M
      } while (target >= 0); /* max of 30 tests / SV */
356
21.0M
      x[i] = a[j];
357
      /* update rank, denominator B (B_k) and counter w[j] */
358
21.0M
      target += w[j] * fac; /* target = fac_B*B*rank */
359
21.0M
      fac_B *= w[j];
360
21.0M
      w[j]--;
361
21.0M
    }
362
2.63M
  }
363
2.84M
}
364
365
/*--------------------------------------------------------------------------
366
  re8_decode_base_index(n, I, y)
367
  DECODING OF AN INDEX IN Qn (n=0,2,3 or 4)
368
  (i) n: codebook number (*n is an integer defined in {0,2,3,4})
369
  (i) I: index of c (pointer to unsigned 16-bit word)
370
  (o) y: point in RE8 (8-dimensional integer vector)
371
  note: the index I is defined as a 32-bit word, but only
372
  16 bits are required (long can be replaced by unsigned integer)
373
  --------------------------------------------------------------------------
374
 */
375
6.50M
static void re8_decode_base_index(int *n, UINT index, SHORT y[8]) {
376
6.50M
  int i, im, t, sign_code, ka, ks, rank, leader[8];
377
378
6.50M
  if (*n < 2) {
379
32.9M
    for (i = 0; i < 8; i++) {
380
29.3M
      y[i] = 0;
381
29.3M
    }
382
3.66M
  } else {
383
    // index = (unsigned int)*I;
384
    /* search for the identifier ka of the absolute leader (table-lookup)
385
       Q2 is a subset of Q3 - the two cases are considered in the same branch
386
     */
387
2.84M
    switch (*n) {
388
1.23M
      case 2:
389
2.10M
      case 3:
390
2.10M
        i = table_lookup(fdk_dec_I3, index, NB_LDQ3);
391
2.10M
        ka = fdk_dec_A3[i];
392
2.10M
        break;
393
740k
      case 4:
394
740k
        i = table_lookup(fdk_dec_I4, index, NB_LDQ4);
395
740k
        ka = fdk_dec_A4[i];
396
740k
        break;
397
0
      default:
398
0
        FDK_ASSERT(0);
399
0
        return;
400
2.84M
    }
401
    /* reconstruct the absolute leader */
402
25.5M
    for (i = 0; i < 8; i++) {
403
22.7M
      leader[i] = fdk_dec_Da[ka][i];
404
22.7M
    }
405
    /* search for the identifier ks of the signed leader (table look-up)
406
       (this search is focused based on the identifier ka of the absolute
407
        leader)*/
408
2.84M
    t = fdk_dec_Ia[ka];
409
2.84M
    im = fdk_dec_Ns[ka];
410
2.84M
    ks = table_lookup(fdk_dec_Is + t, index, im);
411
412
    /* reconstruct the signed leader from its sign code */
413
2.84M
    sign_code = 2 * fdk_dec_Ds[t + ks];
414
25.5M
    for (i = 7; i >= 0; i--) {
415
22.7M
      leader[i] *= (1 - (sign_code & 2));
416
22.7M
      sign_code >>= 1;
417
22.7M
    }
418
419
    /* compute and decode the rank of the permutation */
420
2.84M
    rank = index - fdk_dec_Is[t + ks]; /* rank = index - cardinality offset */
421
422
2.84M
    re8_decode_rank_of_permutation(rank, leader, y);
423
2.84M
  }
424
6.50M
  return;
425
6.50M
}
426
427
/* re8_y2k(y,m,k)
428
   VORONOI INDEXING (INDEX DECODING) k -> y
429
   (i) k: Voronoi index k[0..7]
430
   (i) m: Voronoi modulo (m = 2^r = 1<<r, where r is integer >=2)
431
   (i) r: Voronoi order  (m = 2^r = 1<<r, where r is integer >=2)
432
   (o) y: 8-dimensional point y[0..7] in RE8
433
 */
434
703k
static void re8_k2y(int *k, int r, SHORT *y) {
435
703k
  int i, tmp, sum;
436
703k
  SHORT v[8];
437
703k
  FIXP_ZF zf[8];
438
439
703k
  FDK_ASSERT(r <= ZF_SCALE);
440
441
  /* compute y = k M and z=(y-a)/m, where
442
     M = [4        ]
443
         [2 2      ]
444
         [|   \    ]
445
         [2     2  ]
446
         [1 1 _ 1 1]
447
     a=(2,0,...,0)
448
     m = 1<<r
449
  */
450
6.32M
  for (i = 0; i < 8; i++) {
451
5.62M
    y[i] = k[7];
452
5.62M
  }
453
703k
  zf[7] = INT2ZF(y[7], r);
454
703k
  sum = 0;
455
4.92M
  for (i = 6; i >= 1; i--) {
456
4.21M
    tmp = 2 * k[i];
457
4.21M
    sum += tmp;
458
4.21M
    y[i] += tmp;
459
4.21M
    zf[i] = INT2ZF(y[i], r);
460
4.21M
  }
461
703k
  y[0] += (4 * k[0] + sum);
462
703k
  zf[0] = INT2ZF(y[0] - 2, r);
463
  /* find nearest neighbor v of z in infinite RE8 */
464
703k
  RE8_PPV(zf, v, r);
465
  /* compute y -= m v */
466
6.32M
  for (i = 0; i < 8; i++) {
467
5.62M
    y[i] -= (SHORT)(v[i] << r);
468
5.62M
  }
469
703k
}
470
471
/*--------------------------------------------------------------------------
472
  RE8_dec(n, I, k, y)
473
  MULTI-RATE INDEXING OF A POINT y in THE LATTICE RE8 (INDEX DECODING)
474
  (i) n: codebook number (*n is an integer defined in {0,2,3,4,..,n_max}). n_max
475
  = 36 (i) I: index of c (pointer to unsigned 16-bit word) (i) k: index of v
476
  (8-dimensional vector of binary indices) = Voronoi index (o) y: point in RE8
477
  (8-dimensional integer vector) note: the index I is defined as a 32-bit word,
478
  but only 16 bits are required (long can be replaced by unsigned integer)
479
480
  return 0 on success, -1 on error.
481
  --------------------------------------------------------------------------
482
 */
483
6.51M
static int RE8_dec(int n, int I, int *k, FIXP_DBL *y) {
484
6.51M
  SHORT v[8];
485
6.51M
  SHORT _y[8];
486
6.51M
  UINT r;
487
6.51M
  int i;
488
489
  /* Check bound of codebook qn */
490
6.51M
  if (n > NQ_MAX) {
491
11.5k
    return -1;
492
11.5k
  }
493
494
  /* decode the sub-indices I and kv[] according to the codebook number n:
495
     if n=0,2,3,4, decode I (no Voronoi extension)
496
     if n>4, Voronoi extension is used, decode I and kv[] */
497
6.50M
  if (n <= 4) {
498
5.80M
    re8_decode_base_index(&n, I, _y);
499
52.2M
    for (i = 0; i < 8; i++) {
500
46.4M
      y[i] = (LONG)_y[i];
501
46.4M
    }
502
5.80M
  } else {
503
    /* compute the Voronoi modulo m = 2^r where r is extension order */
504
703k
    r = ((n - 3) >> 1);
505
506
1.79M
    while (n > 4) {
507
1.09M
      n -= 2;
508
1.09M
    }
509
    /* decode base codebook index I into c (c is an element of Q3 or Q4)
510
       [here c is stored in y to save memory] */
511
703k
    re8_decode_base_index(&n, I, _y);
512
    /* decode Voronoi index k[] into v */
513
703k
    re8_k2y(k, r, v);
514
    /* reconstruct y as y = m c + v (with m=2^r, r integer >=1) */
515
6.32M
    for (i = 0; i < 8; i++) {
516
5.62M
      y[i] = (LONG)((_y[i] << r) + v[i]);
517
5.62M
    }
518
703k
  }
519
6.50M
  return 0;
520
6.51M
}
521
522
/**************************/
523
/* start LPC decode stuff */
524
/**************************/
525
//#define M         16
526
#define FREQ_MAX 6400.0f
527
#define FREQ_DIV 400.0f
528
#define LSF_GAP 50.0f
529
530
/**
531
 * \brief calculate inverse weighting factor and add non-weighted residual
532
 *        LSF vector to first stage LSF approximation
533
 * \param lsfq first stage LSF approximation values.
534
 * \param xq weighted residual LSF vector
535
 * \param nk_mode code book number coding mode.
536
 */
537
567k
static void lsf_weight_2st(FIXP_LPC *lsfq, FIXP_DBL *xq, int nk_mode) {
538
567k
  FIXP_LPC d[M_LP_FILTER_ORDER + 1];
539
567k
  FIXP_SGL factor;
540
567k
  LONG w; /* inverse weight factor */
541
567k
  int i;
542
543
  /* compute lsf distance */
544
567k
  d[0] = lsfq[0];
545
567k
  d[M_LP_FILTER_ORDER] =
546
567k
      FL2FXCONST_LPC(FREQ_MAX / (1 << LSF_SCALE)) - lsfq[M_LP_FILTER_ORDER - 1];
547
9.08M
  for (i = 1; i < M_LP_FILTER_ORDER; i++) {
548
8.51M
    d[i] = lsfq[i] - lsfq[i - 1];
549
8.51M
  }
550
551
567k
  switch (nk_mode) {
552
307k
    case 0:
553
307k
      factor = FL2FXCONST_SGL(2.0f * 60.0f / FREQ_DIV);
554
307k
      break; /* abs */
555
57.9k
    case 1:
556
57.9k
      factor = FL2FXCONST_SGL(2.0f * 65.0f / FREQ_DIV);
557
57.9k
      break; /* mid */
558
91.5k
    case 2:
559
91.5k
      factor = FL2FXCONST_SGL(2.0f * 64.0f / FREQ_DIV);
560
91.5k
      break; /* rel1 */
561
110k
    default:
562
110k
      factor = FL2FXCONST_SGL(2.0f * 63.0f / FREQ_DIV);
563
110k
      break; /* rel2 */
564
567k
  }
565
  /* add non-weighted residual LSF vector to LSF1st */
566
9.64M
  for (i = 0; i < M_LP_FILTER_ORDER; i++) {
567
9.08M
    w = (LONG)fMultDiv2(factor, sqrtFixp(fMult(d[i], d[i + 1])));
568
9.08M
    lsfq[i] = fAddSaturate(lsfq[i],
569
9.08M
                           FX_DBL2FX_LPC((FIXP_DBL)((INT64)w * (LONG)xq[i])));
570
9.08M
  }
571
572
567k
  return;
573
567k
}
574
575
/**
576
 * \brief decode nqn amount of code book numbers. These values determine the
577
 * amount of following bits for nqn AVQ RE8 vectors.
578
 * \param nk_mode quantization mode.
579
 * \param nqn amount code book number to read.
580
 * \param qn pointer to output buffer to hold decoded code book numbers qn.
581
 */
582
static void decode_qn(HANDLE_FDK_BITSTREAM hBs, int nk_mode, int nqn,
583
5.95M
                      int qn[]) {
584
5.95M
  int n;
585
586
5.95M
  if (nk_mode == 1) { /* nk mode 1 */
587
    /* Unary code for mid LPC1/LPC3 */
588
    /* Q0=0, Q2=10, Q3=110, ... */
589
10.9M
    for (n = 0; n < nqn; n++) {
590
5.49M
      qn[n] = get_vlclbf(hBs);
591
5.49M
      if (qn[n] > 0) {
592
1.86M
        qn[n]++;
593
1.86M
      }
594
5.49M
    }
595
5.43M
  } else { /* nk_mode 0, 3 and 2 */
596
    /* 2 bits to specify Q2,Q3,Q4,ext */
597
1.54M
    for (n = 0; n < nqn; n++) {
598
1.03M
      qn[n] = 2 + FDKreadBits(hBs, 2);
599
1.03M
    }
600
516k
    if (nk_mode == 2) {
601
      /* Unary code for rel LPC1/LPC3 */
602
      /* Q0 = 0, Q5=10, Q6=110, ... */
603
280k
      for (n = 0; n < nqn; n++) {
604
186k
        if (qn[n] > 4) {
605
47.3k
          qn[n] = get_vlclbf(hBs);
606
47.3k
          if (qn[n] > 0) qn[n] += 4;
607
47.3k
        }
608
186k
      }
609
423k
    } else { /* nk_mode == (0 and 3) */
610
      /* Unary code for abs and rel LPC0/LPC2 */
611
      /* Q5 = 0, Q6=10, Q0=110, Q7=1110, ... */
612
1.26M
      for (n = 0; n < nqn; n++) {
613
846k
        if (qn[n] > 4) {
614
244k
          qn[n] = get_vlclbf(hBs);
615
244k
          switch (qn[n]) {
616
109k
            case 0:
617
109k
              qn[n] = 5;
618
109k
              break;
619
56.2k
            case 1:
620
56.2k
              qn[n] = 6;
621
56.2k
              break;
622
19.6k
            case 2:
623
19.6k
              qn[n] = 0;
624
19.6k
              break;
625
59.5k
            default:
626
59.5k
              qn[n] += 4;
627
59.5k
              break;
628
244k
          }
629
244k
        }
630
846k
      }
631
423k
    }
632
516k
  }
633
5.95M
}
634
635
/**
636
 * \brief reorder LSF coefficients to minimum distance.
637
 * \param lsf pointer to buffer containing LSF coefficients and where reordered
638
 * LSF coefficients will be stored into, scaled by LSF_SCALE.
639
 * \param min_dist min distance scaled by LSF_SCALE
640
 * \param n number of LSF/LSP coefficients.
641
 */
642
567k
static void reorder_lsf(FIXP_LPC *lsf, FIXP_LPC min_dist, int n) {
643
567k
  FIXP_LPC lsf_min;
644
567k
  int i;
645
646
567k
  lsf_min = min_dist;
647
9.64M
  for (i = 0; i < n; i++) {
648
9.08M
    if (lsf[i] < lsf_min) {
649
792k
      lsf[i] = lsf_min;
650
792k
    }
651
9.08M
    lsf_min = fAddSaturate(lsf[i], min_dist);
652
9.08M
  }
653
654
  /* reverse */
655
567k
  lsf_min = FL2FXCONST_LPC(FREQ_MAX / (1 << LSF_SCALE)) - min_dist;
656
9.64M
  for (i = n - 1; i >= 0; i--) {
657
9.08M
    if (lsf[i] > lsf_min) {
658
181k
      lsf[i] = lsf_min;
659
181k
    }
660
661
9.08M
    lsf_min = lsf[i] - min_dist;
662
9.08M
  }
663
567k
}
664
665
/**
666
 * \brief First stage approximation
667
 * \param hBs bitstream handle as data source
668
 * \param lsfq pointer to output buffer to hold LPC coefficients scaled by
669
 * LSF_SCALE.
670
 */
671
static void vlpc_1st_dec(
672
    HANDLE_FDK_BITSTREAM hBs, /* input:  codebook index                  */
673
    FIXP_LPC *lsfq            /* i/o:    i:prediction   o:quantized lsf  */
674
312k
) {
675
312k
  const FIXP_LPC *p_dico;
676
312k
  int i, index;
677
678
312k
  index = FDKreadBits(hBs, 8);
679
312k
  p_dico = &fdk_dec_dico_lsf_abs_8b[index * M_LP_FILTER_ORDER];
680
5.30M
  for (i = 0; i < M_LP_FILTER_ORDER; i++) {
681
4.99M
    lsfq[i] = p_dico[i];
682
4.99M
  }
683
312k
}
684
685
/**
686
 * \brief Do first stage approximation weighting and multiply with AVQ
687
 * refinement.
688
 * \param hBs bitstream handle data ssource.
689
 * \param lsfq buffer holding 1st stage approx, 2nd stage approx is added to
690
 * this values.
691
 * \param nk_mode quantization mode.
692
 * \return 0 on success, -1 on error.
693
 */
694
static int vlpc_2st_dec(
695
    HANDLE_FDK_BITSTREAM hBs,
696
    FIXP_LPC *lsfq, /* i/o:    i:1st stage   o:1st+2nd stage   */
697
    int nk_mode     /* input:  0=abs, >0=rel                   */
698
574k
) {
699
574k
  int err;
700
574k
  FIXP_DBL xq[M_LP_FILTER_ORDER]; /* weighted residual LSF vector */
701
702
  /* Decode AVQ refinement */
703
574k
  { err = CLpc_DecodeAVQ(hBs, xq, nk_mode, 2, 8); }
704
574k
  if (err != 0) {
705
6.88k
    return -1;
706
6.88k
  }
707
708
  /* add non-weighted residual LSF vector to LSF1st */
709
567k
  lsf_weight_2st(lsfq, xq, nk_mode);
710
711
  /* reorder */
712
567k
  reorder_lsf(lsfq, FL2FXCONST_LPC(LSF_GAP / (1 << LSF_SCALE)),
713
567k
              M_LP_FILTER_ORDER);
714
715
567k
  return 0;
716
574k
}
717
718
/*
719
 * Externally visible functions
720
 */
721
722
int CLpc_DecodeAVQ(HANDLE_FDK_BITSTREAM hBs, FIXP_DBL *pOutput, int nk_mode,
723
1.00M
                   int no_qn, int length) {
724
1.00M
  int i, l;
725
726
6.94M
  for (i = 0; i < length; i += 8 * no_qn) {
727
5.95M
    int qn[2], nk, n, I;
728
5.95M
    int kv[8] = {0};
729
730
5.95M
    decode_qn(hBs, nk_mode, no_qn, qn);
731
732
12.4M
    for (l = 0; l < no_qn; l++) {
733
6.51M
      if (qn[l] == 0) {
734
3.66M
        FDKmemclear(&pOutput[i + l * 8], 8 * sizeof(FIXP_DBL));
735
3.66M
      }
736
737
      /* Voronoi extension order ( nk ) */
738
6.51M
      nk = 0;
739
6.51M
      n = qn[l];
740
6.51M
      if (qn[l] > 4) {
741
714k
        nk = (qn[l] - 3) >> 1;
742
714k
        n = qn[l] - nk * 2;
743
714k
      }
744
745
      /* Base codebook index, in reverse bit group order (!) */
746
6.51M
      I = FDKreadBits(hBs, 4 * n);
747
748
6.51M
      if (nk > 0) {
749
714k
        int j;
750
751
6.43M
        for (j = 0; j < 8; j++) {
752
5.71M
          kv[j] = FDKreadBits(hBs, nk);
753
5.71M
        }
754
714k
      }
755
756
6.51M
      if (RE8_dec(qn[l], I, kv, &pOutput[i + l * 8]) != 0) {
757
11.5k
        return -1;
758
11.5k
      }
759
6.51M
    }
760
5.95M
  }
761
994k
  return 0;
762
1.00M
}
763
764
int CLpc_Read(HANDLE_FDK_BITSTREAM hBs, FIXP_LPC lsp[][M_LP_FILTER_ORDER],
765
              FIXP_LPC lpc4_lsf[M_LP_FILTER_ORDER],
766
              FIXP_LPC lsf_adaptive_mean_cand[M_LP_FILTER_ORDER],
767
              FIXP_SGL pStability[], UCHAR *mod, int first_lpd_flag,
768
140k
              int last_lpc_lost, int last_frame_ok) {
769
140k
  int i, k, err;
770
140k
  int mode_lpc_bin = 0; /* mode_lpc bitstream representation */
771
140k
  int lpc_present[5] = {0, 0, 0, 0, 0};
772
140k
  int lpc0_available = 1;
773
140k
  int s = 0;
774
140k
  int l = 3;
775
140k
  const int nbDiv = NB_DIV;
776
777
140k
  lpc_present[4 >> s] = 1; /* LPC4 */
778
779
  /* Decode LPC filters in the following order: LPC 4,0,2,1,3 */
780
781
  /*** Decode LPC4 ***/
782
140k
  vlpc_1st_dec(hBs, lsp[4 >> s]);
783
140k
  err = vlpc_2st_dec(hBs, lsp[4 >> s], 0); /* nk_mode = 0 */
784
140k
  if (err != 0) {
785
2.08k
    return err;
786
2.08k
  }
787
788
  /*** Decode LPC0 and LPC2 ***/
789
138k
  k = 0;
790
138k
  if (!first_lpd_flag) {
791
34.1k
    lpc_present[0] = 1;
792
34.1k
    lpc0_available = !last_lpc_lost;
793
    /* old LPC4 is new LPC0 */
794
581k
    for (i = 0; i < M_LP_FILTER_ORDER; i++) {
795
547k
      lsp[0][i] = lpc4_lsf[i];
796
547k
    }
797
    /* skip LPC0 and continue with LPC2 */
798
34.1k
    k = 2;
799
34.1k
  }
800
801
371k
  for (; k < l; k += 2) {
802
239k
    int nk_mode = 0;
803
804
239k
    if ((k == 2) && (mod[0] == 3)) {
805
2.69k
      break; /* skip LPC2 */
806
2.69k
    }
807
808
236k
    lpc_present[k >> s] = 1;
809
810
236k
    mode_lpc_bin = FDKreadBit(hBs);
811
812
236k
    if (mode_lpc_bin == 0) {
813
      /* LPC0/LPC2: Abs */
814
125k
      vlpc_1st_dec(hBs, lsp[k >> s]);
815
125k
    } else {
816
      /* LPC0/LPC2: RelR */
817
1.88M
      for (i = 0; i < M_LP_FILTER_ORDER; i++) {
818
1.77M
        lsp[k >> s][i] = lsp[4 >> s][i];
819
1.77M
      }
820
110k
      nk_mode = 3;
821
110k
    }
822
823
236k
    err = vlpc_2st_dec(hBs, lsp[k >> s], nk_mode);
824
236k
    if (err != 0) {
825
2.91k
      return err;
826
2.91k
    }
827
236k
  }
828
829
  /*** Decode LPC1 ***/
830
135k
  if (mod[0] < 2) { /* else: skip LPC1 */
831
96.1k
    lpc_present[1] = 1;
832
96.1k
    mode_lpc_bin = get_vlclbf_n(hBs, 2);
833
834
96.1k
    switch (mode_lpc_bin) {
835
20.3k
      case 1:
836
        /* LPC1: abs */
837
20.3k
        vlpc_1st_dec(hBs, lsp[1]);
838
20.3k
        err = vlpc_2st_dec(hBs, lsp[1], 0);
839
20.3k
        if (err != 0) {
840
45
          return err;
841
45
        }
842
20.2k
        break;
843
23.7k
      case 2:
844
        /* LPC1: mid0 (no second stage AVQ quantizer in this case) */
845
23.7k
        if (lpc0_available) { /* LPC0/lsf[0] might be zero some times */
846
399k
          for (i = 0; i < M_LP_FILTER_ORDER; i++) {
847
376k
            lsp[1][i] = (lsp[0][i] >> 1) + (lsp[2][i] >> 1);
848
376k
          }
849
23.5k
        } else {
850
3.70k
          for (i = 0; i < M_LP_FILTER_ORDER; i++) {
851
3.48k
            lsp[1][i] = lsp[2][i];
852
3.48k
          }
853
218
        }
854
23.7k
        break;
855
52.0k
      case 0:
856
        /* LPC1: RelR */
857
884k
        for (i = 0; i < M_LP_FILTER_ORDER; i++) {
858
832k
          lsp[1][i] = lsp[2][i];
859
832k
        }
860
52.0k
        err = vlpc_2st_dec(hBs, lsp[1], 2 << s);
861
52.0k
        if (err != 0) {
862
155
          return err;
863
155
        }
864
51.8k
        break;
865
96.1k
    }
866
96.1k
  }
867
868
  /*** Decode LPC3 ***/
869
135k
  if ((mod[2] < 2)) { /* else: skip LPC3 */
870
125k
    int nk_mode = 0;
871
125k
    lpc_present[3] = 1;
872
873
125k
    mode_lpc_bin = get_vlclbf_n(hBs, 3);
874
875
125k
    switch (mode_lpc_bin) {
876
25.9k
      case 1:
877
        /* LPC3: abs */
878
25.9k
        vlpc_1st_dec(hBs, lsp[3]);
879
25.9k
        break;
880
57.9k
      case 0:
881
        /* LPC3: mid */
882
984k
        for (i = 0; i < M_LP_FILTER_ORDER; i++) {
883
926k
          lsp[3][i] = (lsp[2][i] >> 1) + (lsp[4][i] >> 1);
884
926k
        }
885
57.9k
        nk_mode = 1;
886
57.9k
        break;
887
10.8k
      case 2:
888
        /* LPC3: relL */
889
184k
        for (i = 0; i < M_LP_FILTER_ORDER; i++) {
890
173k
          lsp[3][i] = lsp[2][i];
891
173k
        }
892
10.8k
        nk_mode = 2;
893
10.8k
        break;
894
30.5k
      case 3:
895
        /* LPC3: relR */
896
519k
        for (i = 0; i < M_LP_FILTER_ORDER; i++) {
897
488k
          lsp[3][i] = lsp[4][i];
898
488k
        }
899
30.5k
        nk_mode = 2;
900
30.5k
        break;
901
125k
    }
902
125k
    err = vlpc_2st_dec(hBs, lsp[3], nk_mode);
903
125k
    if (err != 0) {
904
1.69k
      return err;
905
1.69k
    }
906
125k
  }
907
908
133k
  if (!lpc0_available && !last_frame_ok) {
909
    /* LPC(0) was lost. Use next available LPC(k) instead */
910
1.31k
    for (k = 1; k < (nbDiv + 1); k++) {
911
1.31k
      if (lpc_present[k]) {
912
22.3k
        for (i = 0; i < M_LP_FILTER_ORDER; i++) {
913
21.0k
#define LSF_INIT_TILT (0.25f)
914
21.0k
          if (mod[0] > 0) {
915
0
            lsp[0][i] = FX_DBL2FX_LPC(
916
0
                fMult(lsp[k][i], FL2FXCONST_SGL(1.0f - LSF_INIT_TILT)) +
917
0
                fMult(fdk_dec_lsf_init[i], FL2FXCONST_SGL(LSF_INIT_TILT)));
918
21.0k
          } else {
919
21.0k
            lsp[0][i] = lsp[k][i];
920
21.0k
          }
921
21.0k
        }
922
1.31k
        break;
923
1.31k
      }
924
1.31k
    }
925
1.31k
  }
926
927
2.26M
  for (i = 0; i < M_LP_FILTER_ORDER; i++) {
928
2.13M
    lpc4_lsf[i] = lsp[4 >> s][i];
929
2.13M
  }
930
931
133k
  {
932
133k
    FIXP_DBL divFac;
933
133k
    int last, numLpc = 0;
934
935
133k
    i = nbDiv;
936
412k
    do {
937
412k
      numLpc += lpc_present[i--];
938
412k
    } while (i >= 0 && numLpc < 3);
939
940
133k
    last = i;
941
942
133k
    switch (numLpc) {
943
130k
      case 3:
944
130k
        divFac = FL2FXCONST_DBL(1.0f / 3.0f);
945
130k
        break;
946
2.69k
      case 2:
947
2.69k
        divFac = FL2FXCONST_DBL(1.0f / 2.0f);
948
2.69k
        break;
949
0
      default:
950
0
        divFac = FL2FXCONST_DBL(1.0f);
951
0
        break;
952
133k
    }
953
954
    /* get the adaptive mean for the next (bad) frame */
955
2.26M
    for (k = 0; k < M_LP_FILTER_ORDER; k++) {
956
2.13M
      FIXP_DBL tmp = (FIXP_DBL)0;
957
8.73M
      for (i = nbDiv; i > last; i--) {
958
6.60M
        if (lpc_present[i]) {
959
6.35M
          tmp = fMultAdd(tmp >> 1, lsp[i][k], divFac);
960
6.35M
        }
961
6.60M
      }
962
2.13M
      lsf_adaptive_mean_cand[k] = FX_DBL2FX_LPC(tmp);
963
2.13M
    }
964
133k
  }
965
966
  /* calculate stability factor Theta. Needed for ACELP decoder and concealment
967
   */
968
0
  {
969
133k
    FIXP_LPC *lsf_prev, *lsf_curr;
970
133k
    k = 0;
971
972
133k
    FDK_ASSERT(lpc_present[0] == 1 && lpc_present[4 >> s] == 1);
973
133k
    lsf_prev = lsp[0];
974
666k
    for (i = 1; i < (nbDiv + 1); i++) {
975
533k
      if (lpc_present[i]) {
976
483k
        FIXP_DBL tmp = (FIXP_DBL)0;
977
483k
        int j;
978
483k
        lsf_curr = lsp[i];
979
980
        /* sum = tmp * 2^(LSF_SCALE*2 + 4) */
981
8.21M
        for (j = 0; j < M_LP_FILTER_ORDER; j++) {
982
7.73M
          tmp += fPow2Div2((FIXP_SGL)(lsf_curr[j] - lsf_prev[j])) >> 3;
983
7.73M
        }
984
985
        /* tmp = (float)(FL2FXCONST_DBL(1.25f) - fMult(tmp,
986
         * FL2FXCONST_DBL(1/400000.0f))); */
987
483k
        tmp = FL2FXCONST_DBL(1.25f / (1 << LSF_SCALE)) -
988
483k
              fMult(tmp, FL2FXCONST_DBL((1 << (LSF_SCALE + 4)) / 400000.0f));
989
483k
        if (tmp >= FL2FXCONST_DBL(1.0f / (1 << LSF_SCALE))) {
990
97.9k
          pStability[k] = FL2FXCONST_SGL(1.0f / 2.0f);
991
385k
        } else if (tmp < FL2FXCONST_DBL(0.0f)) {
992
244k
          pStability[k] = FL2FXCONST_SGL(0.0f);
993
244k
        } else {
994
140k
          pStability[k] = FX_DBL2FX_SGL(tmp << (LSF_SCALE - 1));
995
140k
        }
996
997
483k
        lsf_prev = lsf_curr;
998
483k
        k = i;
999
483k
      } else {
1000
        /* Mark stability value as undefined. */
1001
49.9k
        pStability[i] = (FIXP_SGL)-1;
1002
49.9k
      }
1003
533k
    }
1004
133k
  }
1005
1006
  /* convert into LSP domain */
1007
800k
  for (i = 0; i < (nbDiv + 1); i++) {
1008
666k
    if (lpc_present[i]) {
1009
10.4M
      for (k = 0; k < M_LP_FILTER_ORDER; k++) {
1010
9.86M
        lsp[i][k] = FX_DBL2FX_LPC(
1011
9.86M
            fixp_cos(fMult(lsp[i][k],
1012
9.86M
                           FL2FXCONST_SGL((1 << LSPARG_SCALE) * M_PI / 6400.0)),
1013
9.86M
                     LSF_SCALE - LSPARG_SCALE));
1014
9.86M
      }
1015
616k
    }
1016
666k
  }
1017
1018
133k
  return 0;
1019
133k
}
1020
1021
void CLpc_Conceal(FIXP_LPC lsp[][M_LP_FILTER_ORDER],
1022
                  FIXP_LPC lpc4_lsf[M_LP_FILTER_ORDER],
1023
                  FIXP_LPC lsf_adaptive_mean[M_LP_FILTER_ORDER],
1024
2.05M
                  const int first_lpd_flag) {
1025
2.05M
  int i, j;
1026
1027
2.05M
#define BETA (FL2FXCONST_SGL(0.25f))
1028
2.05M
#define ONE_BETA (FL2FXCONST_SGL(0.75f))
1029
2.05M
#define BFI_FAC (FL2FXCONST_SGL(0.90f))
1030
2.05M
#define ONE_BFI_FAC (FL2FXCONST_SGL(0.10f))
1031
1032
  /* Frame loss concealment (could be improved) */
1033
1034
2.05M
  if (first_lpd_flag) {
1035
    /* Reset past LSF values */
1036
26.2M
    for (i = 0; i < M_LP_FILTER_ORDER; i++) {
1037
24.7M
      lsp[0][i] = lpc4_lsf[i] = fdk_dec_lsf_init[i];
1038
24.7M
    }
1039
1.54M
  } else {
1040
    /* old LPC4 is new LPC0 */
1041
8.70M
    for (i = 0; i < M_LP_FILTER_ORDER; i++) {
1042
8.19M
      lsp[0][i] = lpc4_lsf[i];
1043
8.19M
    }
1044
512k
  }
1045
1046
  /* LPC1 */
1047
34.9M
  for (i = 0; i < M_LP_FILTER_ORDER; i++) {
1048
32.9M
    FIXP_LPC lsf_mean = FX_DBL2FX_LPC(fMult(BETA, fdk_dec_lsf_init[i]) +
1049
32.9M
                                      fMult(ONE_BETA, lsf_adaptive_mean[i]));
1050
1051
32.9M
    lsp[1][i] = FX_DBL2FX_LPC(fMult(BFI_FAC, lpc4_lsf[i]) +
1052
32.9M
                              fMult(ONE_BFI_FAC, lsf_mean));
1053
32.9M
  }
1054
1055
  /* LPC2 - LPC4 */
1056
8.23M
  for (j = 2; j <= 4; j++) {
1057
104M
    for (i = 0; i < M_LP_FILTER_ORDER; i++) {
1058
      /* lsf_mean[i] =  FX_DBL2FX_LPC(fMult((FIXP_LPC)(BETA + j *
1059
         FL2FXCONST_LPC(0.1f)), fdk_dec_lsf_init[i])
1060
                                    + fMult((FIXP_LPC)(ONE_BETA - j *
1061
         FL2FXCONST_LPC(0.1f)), lsf_adaptive_mean[i])); */
1062
1063
98.7M
      FIXP_LPC lsf_mean = FX_DBL2FX_LPC(
1064
98.7M
          fMult((FIXP_SGL)(BETA + (FIXP_SGL)(j * (INT)FL2FXCONST_SGL(0.1f))),
1065
98.7M
                (FIXP_SGL)fdk_dec_lsf_init[i]) +
1066
98.7M
          fMult(
1067
98.7M
              (FIXP_SGL)(ONE_BETA - (FIXP_SGL)(j * (INT)FL2FXCONST_SGL(0.1f))),
1068
98.7M
              lsf_adaptive_mean[i]));
1069
1070
98.7M
      lsp[j][i] = FX_DBL2FX_LPC(fMult(BFI_FAC, lsp[j - 1][i]) +
1071
98.7M
                                fMult(ONE_BFI_FAC, lsf_mean));
1072
98.7M
    }
1073
6.17M
  }
1074
1075
  /* Update past values for the future */
1076
34.9M
  for (i = 0; i < M_LP_FILTER_ORDER; i++) {
1077
32.9M
    lpc4_lsf[i] = lsp[4][i];
1078
32.9M
  }
1079
1080
  /* convert into LSP domain */
1081
12.3M
  for (j = 0; j < 5; j++) {
1082
174M
    for (i = 0; i < M_LP_FILTER_ORDER; i++) {
1083
164M
      lsp[j][i] = FX_DBL2FX_LPC(fixp_cos(
1084
164M
          fMult(lsp[j][i], FL2FXCONST_SGL((1 << LSPARG_SCALE) * M_PI / 6400.0)),
1085
164M
          LSF_SCALE - LSPARG_SCALE));
1086
164M
    }
1087
10.2M
  }
1088
2.05M
}
1089
1090
1.80M
void E_LPC_a_weight(FIXP_LPC *wA, const FIXP_LPC *A, int m) {
1091
1.80M
  FIXP_DBL f;
1092
1.80M
  int i;
1093
1094
1.80M
  f = FL2FXCONST_DBL(0.92f);
1095
30.7M
  for (i = 0; i < m; i++) {
1096
28.9M
    wA[i] = FX_DBL2FX_LPC(fMult(A[i], f));
1097
28.9M
    f = fMult(f, FL2FXCONST_DBL(0.92f));
1098
28.9M
  }
1099
1.80M
}
1100
1101
225k
void CLpd_DecodeGain(FIXP_DBL *gain, INT *gain_e, int gain_code) {
1102
  /* gain * 2^(gain_e) = 10^(gain_code/28) */
1103
225k
  *gain = fLdPow(
1104
225k
      FL2FXCONST_DBL(3.3219280948873623478703194294894 / 4.0), /* log2(10)*/
1105
225k
      2,
1106
225k
      fMultDiv2((FIXP_DBL)gain_code << (DFRACT_BITS - 1 - 7),
1107
225k
                FL2FXCONST_DBL(2.0f / 28.0f)),
1108
225k
      7, gain_e);
1109
225k
}
1110
1111
  /**
1112
   * \brief *   Find the polynomial F1(z) or F2(z) from the LSPs.
1113
   * This is performed by expanding the product polynomials:
1114
   *
1115
   * F1(z) =   product   ( 1 - 2 LSP_i z^-1 + z^-2 )
1116
   *         i=0,2,4,6,8
1117
   * F2(z) =   product   ( 1 - 2 LSP_i z^-1 + z^-2 )
1118
   *         i=1,3,5,7,9
1119
   *
1120
   * where LSP_i are the LSPs in the cosine domain.
1121
   * R.A.Salami    October 1990
1122
   * \param lsp input, line spectral freq. (cosine domain)
1123
   * \param f output, the coefficients of F1 or F2, scaled by 8 bits
1124
   * \param n no of coefficients (m/2)
1125
   * \param flag 1 : F1(z) ; 2 : F2(z)
1126
   */
1127
1128
103M
#define SF_F 8
1129
1130
12.1M
static void get_lsppol(FIXP_LPC lsp[], FIXP_DBL f[], int n, int flag) {
1131
12.1M
  FIXP_DBL b;
1132
12.1M
  FIXP_LPC *plsp;
1133
12.1M
  int i, j;
1134
1135
12.1M
  plsp = lsp + flag - 1;
1136
12.1M
  f[0] = FL2FXCONST_DBL(1.0f / (1 << SF_F));
1137
12.1M
  b = -FX_LPC2FX_DBL(*plsp);
1138
12.1M
  f[1] = b >> (SF_F - 1);
1139
97.4M
  for (i = 2; i <= n; i++) {
1140
85.2M
    plsp += 2;
1141
85.2M
    b = -FX_LPC2FX_DBL(*plsp);
1142
85.2M
    f[i] = SATURATE_LEFT_SHIFT((fMultDiv2(b, f[i - 1]) + (f[i - 2] >> 1)), 2,
1143
85.2M
                               DFRACT_BITS);
1144
340M
    for (j = i - 1; j > 1; j--) {
1145
255M
      f[j] = SATURATE_LEFT_SHIFT(
1146
255M
          ((f[j] >> 2) + fMultDiv2(b, f[j - 1]) + (f[j - 2] >> 2)), 2,
1147
255M
          DFRACT_BITS);
1148
255M
    }
1149
85.2M
    f[1] = f[1] + (b >> (SF_F - 1));
1150
85.2M
  }
1151
12.1M
  return;
1152
12.1M
}
1153
1154
85.2M
#define NC M_LP_FILTER_ORDER / 2
1155
1156
/**
1157
 * \brief lsp input LSP vector
1158
 * \brief a output LP filter coefficient vector scaled by SF_A_COEFFS.
1159
 */
1160
6.08M
void E_LPC_f_lsp_a_conversion(FIXP_LPC *lsp, FIXP_LPC *a, INT *a_exp) {
1161
6.08M
  FIXP_DBL f1[NC + 1], f2[NC + 1];
1162
6.08M
  int i, k;
1163
1164
  /*-----------------------------------------------------*
1165
   *  Find the polynomials F1(z) and F2(z)               *
1166
   *-----------------------------------------------------*/
1167
1168
6.08M
  get_lsppol(lsp, f1, NC, 1);
1169
6.08M
  get_lsppol(lsp, f2, NC, 2);
1170
1171
  /*-----------------------------------------------------*
1172
   *  Multiply F1(z) by (1+z^-1) and F2(z) by (1-z^-1)   *
1173
   *-----------------------------------------------------*/
1174
6.08M
  scaleValues(f1, NC + 1, -2);
1175
6.08M
  scaleValues(f2, NC + 1, -2);
1176
1177
54.7M
  for (i = NC; i > 0; i--) {
1178
48.7M
    f1[i] += f1[i - 1];
1179
48.7M
    f2[i] -= f2[i - 1];
1180
48.7M
  }
1181
1182
6.08M
  FIXP_DBL aDBL[M_LP_FILTER_ORDER];
1183
1184
54.7M
  for (i = 1, k = M_LP_FILTER_ORDER - 1; i <= NC; i++, k--) {
1185
48.7M
    aDBL[i - 1] = f1[i] + f2[i];
1186
48.7M
    aDBL[k] = f1[i] - f2[i];
1187
48.7M
  }
1188
1189
6.08M
  int headroom_a = getScalefactor(aDBL, M_LP_FILTER_ORDER);
1190
1191
103M
  for (i = 0; i < M_LP_FILTER_ORDER; i++) {
1192
97.4M
    a[i] = FX_DBL2FX_LPC(aDBL[i] << headroom_a);
1193
97.4M
  }
1194
1195
6.08M
  *a_exp = SF_F + (2 - 1) - headroom_a;
1196
6.08M
}