Coverage Report

Created: 2026-08-31 07:13

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/proc/self/cwd/libfaad/sbr_hfadj.c
Line
Count
Source
1
/*
2
** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
3
** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com
4
**
5
** This program is free software; you can redistribute it and/or modify
6
** it under the terms of the GNU General Public License as published by
7
** the Free Software Foundation; either version 2 of the License, or
8
** (at your option) any later version.
9
**
10
** This program is distributed in the hope that it will be useful,
11
** but WITHOUT ANY WARRANTY; without even the implied warranty of
12
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
** GNU General Public License for more details.
14
**
15
** You should have received a copy of the GNU General Public License
16
** along with this program; if not, write to the Free Software
17
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
**
19
** Any non-GPL usage of this software or parts of this software is strictly
20
** forbidden.
21
**
22
** The "appropriate copyright message" mentioned in section 2c of the GPLv2
23
** must read: "Code from FAAD2 is copyright (c) Nero AG, www.nero.com"
24
**
25
** Commercial non-GPL licensing of this software is possible.
26
** For more info contact Nero AG through Mpeg4AAClicense@nero.com.
27
**
28
** $Id: sbr_hfadj.c,v 1.23 2008/09/19 22:50:20 menno Exp $
29
**/
30
31
/* High Frequency adjustment */
32
#include <float.h>
33
34
#include "common.h"
35
#include "structs.h"
36
37
#ifdef SBR_DEC
38
39
#include "sbr_syntax.h"
40
#include "sbr_hfadj.h"
41
42
#include "sbr_noise.h"
43
44
45
/* static function declarations */
46
static uint8_t estimate_current_envelope(sbr_info *sbr, sbr_hfadj_info *adj,
47
                                         qmf_t Xsbr[MAX_NTSRHFG][64], uint8_t ch);
48
static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch);
49
#ifdef SBR_LOW_POWER
50
static void calc_gain_groups(sbr_info *sbr, sbr_hfadj_info *adj, real_t *deg, uint8_t ch);
51
static void aliasing_reduction(sbr_info *sbr, sbr_hfadj_info *adj, real_t *deg, uint8_t ch);
52
#endif
53
static void hf_assembly(sbr_info *sbr, sbr_hfadj_info *adj, qmf_t Xsbr[MAX_NTSRHFG][64], uint8_t ch);
54
55
56
uint8_t hf_adjustment(sbr_info *sbr, qmf_t Xsbr[MAX_NTSRHFG][64]
57
#ifdef SBR_LOW_POWER
58
                      ,real_t *deg /* aliasing degree */
59
#endif
60
                      ,uint8_t ch)
61
8.62k
{
62
8.62k
    ALIGN sbr_hfadj_info adj = {{{0}}};
63
8.62k
    uint8_t ret = 0;
64
65
8.62k
    if (sbr->bs_frame_class[ch] == FIXFIX)
66
2.52k
    {
67
2.52k
        sbr->l_A[ch] = -1;
68
6.10k
    } else if (sbr->bs_frame_class[ch] == VARFIX) {
69
2.86k
        if (sbr->bs_pointer[ch] > 1)
70
489
            sbr->l_A[ch] = sbr->bs_pointer[ch] - 1;
71
2.37k
        else
72
2.37k
            sbr->l_A[ch] = -1;
73
3.24k
    } else {
74
3.24k
        if (sbr->bs_pointer[ch] == 0)
75
1.03k
            sbr->l_A[ch] = -1;
76
2.21k
        else
77
2.21k
            sbr->l_A[ch] = sbr->L_E[ch] + 1 - sbr->bs_pointer[ch];
78
3.24k
    }
79
80
8.62k
    ret = estimate_current_envelope(sbr, &adj, Xsbr, ch);
81
8.62k
    if (ret > 0)
82
9
        return 1;
83
84
8.61k
    calculate_gain(sbr, &adj, ch);
85
86
#ifdef SBR_LOW_POWER
87
    calc_gain_groups(sbr, &adj, deg, ch);
88
    aliasing_reduction(sbr, &adj, deg, ch);
89
#endif
90
91
8.61k
    hf_assembly(sbr, &adj, Xsbr, ch);
92
93
8.61k
    return 0;
94
8.62k
}
95
96
static uint8_t get_S_mapped(sbr_info *sbr, uint8_t ch, uint8_t l, uint8_t current_band)
97
90.2k
{
98
90.2k
    if (sbr->f[ch][l] == HI_RES)
99
55.0k
    {
100
        /* in case of using f_table_high we just have 1 to 1 mapping
101
         * from bs_add_harmonic[l][k]
102
         */
103
55.0k
        if ((l >= sbr->l_A[ch]) ||
104
22.0k
            (sbr->bs_add_harmonic_prev[ch][current_band] && sbr->bs_add_harmonic_flag_prev[ch]))
105
33.6k
        {
106
33.6k
            return sbr->bs_add_harmonic[ch][current_band];
107
33.6k
        }
108
55.0k
    } else {
109
35.2k
        uint8_t b, lb, ub;
110
111
        /* in case of f_table_low we check if any of the HI_RES bands
112
         * within this LO_RES band has bs_add_harmonic[l][k] turned on
113
         * (note that borders in the LO_RES table are also present in
114
         * the HI_RES table)
115
         */
116
117
        /* find first HI_RES band in current LO_RES band */
118
35.2k
        lb = 2*current_band - ((sbr->N_high & 1) ? 1 : 0);
119
        /* find first HI_RES band in next LO_RES band */
120
35.2k
        ub = 2*(current_band+1) - ((sbr->N_high & 1) ? 1 : 0);
121
122
        /* check all HI_RES bands in current LO_RES band for sinusoid */
123
89.0k
        for (b = lb; b < ub; b++)
124
57.2k
        {
125
57.2k
            if ((l >= sbr->l_A[ch]) ||
126
7.78k
                (sbr->bs_add_harmonic_prev[ch][b] && sbr->bs_add_harmonic_flag_prev[ch]))
127
50.0k
            {
128
50.0k
                if (sbr->bs_add_harmonic[ch][b] == 1)
129
3.39k
                    return 1;
130
50.0k
            }
131
57.2k
        }
132
35.2k
    }
133
134
53.2k
    return 0;
135
90.2k
}
136
137
static uint8_t estimate_current_envelope(sbr_info *sbr, sbr_hfadj_info *adj,
138
                                         qmf_t Xsbr[MAX_NTSRHFG][64], uint8_t ch)
139
8.62k
{
140
8.62k
    uint8_t m, l, j, k, k_l, k_h, p;
141
8.62k
    real_t div;
142
8.62k
    (void)adj;  /* TODO: remove parameter? */
143
#ifdef FIXED_POINT
144
    /* the per-bin energy is accumulated over the envelope's time slots and,
145
       for the wider bands, its QMF bins; that sum exceeds 32 bits on ordinary
146
       content, so keep it in 64 bits. the running int32 sum otherwise wraps
147
       before the limit test below can reject an over-range energy. */
148
    int64_t nrg;
149
    const real_t half = REAL_CONST(0.5);
150
    int64_t limit;
151
#else
152
8.62k
    real_t nrg;
153
8.62k
    const real_t half = 0;  /* Compiler is smart enough to eliminate +0 op. */
154
8.62k
    const real_t limit = FLT_MAX;
155
8.62k
#endif
156
157
8.62k
    if (sbr->bs_interpol_freq == 1)
158
6.97k
    {
159
18.6k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
11.7k
        {
161
11.7k
            uint8_t i, l_i, u_i;
162
163
11.7k
            l_i = sbr->t_E[ch][l];
164
11.7k
            u_i = sbr->t_E[ch][l+1];
165
166
11.7k
            div = (real_t)(u_i - l_i);
167
168
11.7k
            if (div <= 0)
169
728
                div = 1;
170
#ifdef FIXED_POINT
171
            limit = (int64_t)div << 30;
172
#endif
173
174
141k
            for (m = 0; m < sbr->M; m++)
175
129k
            {
176
129k
                nrg = 0;
177
178
2.45M
                for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
179
2.32M
                {
180
2.32M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
2.32M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
2.32M
                    (void)im;
183
                    /* Actually, that should be MUL_R. On floating-point build
184
                       that is the same. On fixed point-build we use it to
185
                       pre-scale result (to aviod overflow). That, of course
186
                       causes some precision loss. */
187
2.32M
                    nrg += MUL_C(re, re)
188
2.32M
#ifndef SBR_LOW_POWER
189
2.32M
                        + MUL_C(im, im)
190
2.32M
#endif
191
2.32M
                        ;
192
2.32M
                }
193
194
129k
                if (nrg < -limit || nrg > limit)
195
4
                    return 1;
196
#ifdef FIXED_POINT
197
                sbr->E_curr[ch][m][l] = (real_t)(nrg / div);
198
#else
199
129k
                sbr->E_curr[ch][m][l] = nrg / div;
200
129k
#endif
201
#ifdef SBR_LOW_POWER
202
#ifdef FIXED_POINT
203
                sbr->E_curr[ch][m][l] <<= 1;
204
#else
205
                sbr->E_curr[ch][m][l] *= 2;
206
#endif
207
#endif
208
129k
            }
209
11.7k
        }
210
6.97k
    } else {
211
6.88k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
5.23k
        {
213
42.0k
            for (p = 0; p < sbr->n[sbr->f[ch][l]]; p++)
214
36.7k
            {
215
36.7k
                k_l = sbr->f_table_res[sbr->f[ch][l]][p];
216
36.7k
                k_h = sbr->f_table_res[sbr->f[ch][l]][p+1];
217
218
121k
                for (k = k_l; k < k_h; k++)
219
84.9k
                {
220
84.9k
                    uint8_t i, l_i, u_i;
221
84.9k
                    nrg = 0;
222
223
84.9k
                    l_i = sbr->t_E[ch][l];
224
84.9k
                    u_i = sbr->t_E[ch][l+1];
225
226
84.9k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
84.9k
                    if (div <= 0)
229
12.3k
                        div = 1;
230
#ifdef FIXED_POINT
231
                    limit = (int64_t)div << 30;
232
#endif
233
234
1.00M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
923k
                    {
236
3.98M
                        for (j = k_l; j < k_h; j++)
237
3.06M
                        {
238
3.06M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
3.06M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
3.06M
                            (void)im;
241
                            /* Actually, that should be MUL_R. On floating-point build
242
                               that is the same. On fixed point-build we use it to
243
                               pre-scale result (to aviod overflow). That, of course
244
                               causes some precision loss. */
245
3.06M
                            nrg += MUL_C(re, re)
246
3.06M
#ifndef SBR_LOW_POWER
247
3.06M
                                + MUL_C(im, im)
248
3.06M
#endif
249
3.06M
                                ;
250
3.06M
                        }
251
923k
                    }
252
253
84.9k
                    if (nrg < -limit || nrg > limit)
254
5
                        return 1;
255
#ifdef FIXED_POINT
256
                    sbr->E_curr[ch][k - sbr->kx][l] = (real_t)(nrg / div);
257
#else
258
84.9k
                    sbr->E_curr[ch][k - sbr->kx][l] = nrg / div;
259
84.9k
#endif
260
#ifdef SBR_LOW_POWER
261
#ifdef FIXED_POINT
262
                    sbr->E_curr[ch][k - sbr->kx][l] <<= 1;
263
#else
264
                    sbr->E_curr[ch][k - sbr->kx][l] *= 2;
265
#endif
266
#endif
267
84.9k
                }
268
36.7k
            }
269
5.23k
        }
270
1.65k
    }
271
272
8.61k
    return 0;
273
8.62k
}
274
275
#ifdef FIXED_POINT
276
#define EPS (1) /* smallest number available in fixed point */
277
#else
278
149k
#define EPS (1e-12)
279
#endif
280
281
282
283
#ifdef FIXED_POINT
284
285
/* log2 values of [0..63] */
286
static const real_t log2_int_tab[] = {
287
    LOG2_MIN_INF, REAL_CONST(0.000000000000000), REAL_CONST(1.000000000000000), REAL_CONST(1.584962500721156),
288
    REAL_CONST(2.000000000000000), REAL_CONST(2.321928094887362), REAL_CONST(2.584962500721156), REAL_CONST(2.807354922057604),
289
    REAL_CONST(3.000000000000000), REAL_CONST(3.169925001442313), REAL_CONST(3.321928094887363), REAL_CONST(3.459431618637297),
290
    REAL_CONST(3.584962500721156), REAL_CONST(3.700439718141092), REAL_CONST(3.807354922057604), REAL_CONST(3.906890595608519),
291
    REAL_CONST(4.000000000000000), REAL_CONST(4.087462841250339), REAL_CONST(4.169925001442312), REAL_CONST(4.247927513443585),
292
    REAL_CONST(4.321928094887362), REAL_CONST(4.392317422778761), REAL_CONST(4.459431618637297), REAL_CONST(4.523561956057013),
293
    REAL_CONST(4.584962500721156), REAL_CONST(4.643856189774724), REAL_CONST(4.700439718141093), REAL_CONST(4.754887502163468),
294
    REAL_CONST(4.807354922057604), REAL_CONST(4.857980995127572), REAL_CONST(4.906890595608519), REAL_CONST(4.954196310386875),
295
    REAL_CONST(5.000000000000000), REAL_CONST(5.044394119358453), REAL_CONST(5.087462841250340), REAL_CONST(5.129283016944966),
296
    REAL_CONST(5.169925001442312), REAL_CONST(5.209453365628949), REAL_CONST(5.247927513443585), REAL_CONST(5.285402218862248),
297
    REAL_CONST(5.321928094887363), REAL_CONST(5.357552004618084), REAL_CONST(5.392317422778761), REAL_CONST(5.426264754702098),
298
    REAL_CONST(5.459431618637297), REAL_CONST(5.491853096329675), REAL_CONST(5.523561956057013), REAL_CONST(5.554588851677637),
299
    REAL_CONST(5.584962500721156), REAL_CONST(5.614709844115208), REAL_CONST(5.643856189774724), REAL_CONST(5.672425341971495),
300
    REAL_CONST(5.700439718141093), REAL_CONST(5.727920454563200), REAL_CONST(5.754887502163469), REAL_CONST(5.781359713524660),
301
    REAL_CONST(5.807354922057605), REAL_CONST(5.832890014164742), REAL_CONST(5.857980995127572), REAL_CONST(5.882643049361842),
302
    REAL_CONST(5.906890595608518), REAL_CONST(5.930737337562887), REAL_CONST(5.954196310386876), REAL_CONST(5.977279923499916)
303
};
304
305
// pan_log2_tab[X] = log2(2**X + 1) - X
306
static const real_t pan_log2_tab[13] = {
307
    REAL_CONST(1.000000000000000), REAL_CONST(0.584962500721156), REAL_CONST(0.321928094887362), REAL_CONST(0.169925001442312), REAL_CONST(0.087462841250339),
308
    REAL_CONST(0.044394119358453), REAL_CONST(0.022367813028455), REAL_CONST(0.011227255423254), REAL_CONST(0.005624549193878), REAL_CONST(0.002815015607054),
309
    REAL_CONST(0.001408194392808), REAL_CONST(0.000704269011247), REAL_CONST(0.000352177480301)
310
};
311
312
static real_t find_log2_E(sbr_info *sbr, uint8_t k, uint8_t l, uint8_t ch)
313
{
314
    /* check for coupled energy/noise data */
315
    if (sbr->bs_coupling == 1)
316
    {
317
        int16_t e = sbr->E[0][k][l];
318
        int16_t E = sbr->E[1][k][l];
319
        uint8_t amp0 = (sbr->amp_res[0]) ? 0 : 1;
320
        uint8_t amp1 = (sbr->amp_res[1]) ? 0 : 1;
321
        real_t tmp, pan;
322
323
        /* E[1] should always be even so shifting is OK */
324
        E >>= amp1;
325
        if (e < 0 || e >= 64 || E < 0 || E > 24)
326
            return LOG2_MIN_INF;
327
        E -= 12;
328
329
        if (ch != 0)  // L/R anti-symmetry
330
            E = -E;
331
332
        if (E >= 0)
333
        {
334
            /* negative */
335
            pan = pan_log2_tab[E];
336
        } else {
337
            /* positive */
338
            pan = pan_log2_tab[-E] + ((-E)<<REAL_BITS);
339
        }
340
341
        /* tmp / pan in log2 */
342
        tmp = (7 << REAL_BITS) + (e << (REAL_BITS-amp0));
343
        return tmp - pan;
344
    } else {
345
        int16_t e = sbr->E[ch][k][l];
346
        uint8_t amp = (sbr->amp_res[ch]) ? 0 : 1;
347
        if (e < 0 || (e >> amp) >= 64)
348
            return LOG2_MIN_INF;
349
        return 6 * REAL_PRECISION + e * (REAL_PRECISION >> amp);
350
    }
351
}
352
353
static real_t find_log2_Q(sbr_info *sbr, uint8_t k, uint8_t l, uint8_t ch)
354
{
355
    /* check for coupled energy/noise data */
356
    if (sbr->bs_coupling == 1)
357
    {
358
        int32_t q = sbr->Q[0][k][l];
359
        int32_t Q = sbr->Q[1][k][l];
360
        real_t tmp, pan;
361
362
        if (q < 0 || q > 30 || Q < 0 || Q > 24)
363
            return LOG2_MIN_INF;
364
        Q -= 12;
365
366
        if (ch != 0)  // L/R anti-symmetry
367
            Q = -Q;
368
369
        if (Q >= 0)
370
        {
371
            /* negative */
372
            pan = pan_log2_tab[Q];
373
        } else {
374
            /* positive */
375
            pan = pan_log2_tab[-Q] + ((-Q)<<REAL_BITS);
376
        }
377
378
        /* tmp / pan in log2 */
379
        tmp = (7 - q) * REAL_PRECISION;
380
        return tmp - pan;
381
    } else {
382
        int32_t q = sbr->Q[ch][k][l];
383
        if (q < 0 || q > 30)
384
            return LOG2_MIN_INF;
385
        return (6 - q) * REAL_PRECISION;
386
    }
387
}
388
389
static const real_t log_Qplus1_pan[31][13] = {
390
    { REAL_CONST(0.044383447617292), REAL_CONST(0.169768601655960), REAL_CONST(0.583090126514435), REAL_CONST(1.570089221000671), REAL_CONST(3.092446088790894), REAL_CONST(4.733354568481445), REAL_CONST(6.022367954254150), REAL_CONST(6.692092418670654), REAL_CONST(6.924463272094727), REAL_CONST(6.989034175872803), REAL_CONST(7.005646705627441), REAL_CONST(7.009829998016357), REAL_CONST(7.010877609252930) },
391
    { REAL_CONST(0.022362394258380), REAL_CONST(0.087379962205887), REAL_CONST(0.320804953575134), REAL_CONST(0.988859415054321), REAL_CONST(2.252387046813965), REAL_CONST(3.786596298217773), REAL_CONST(5.044394016265869), REAL_CONST(5.705977916717529), REAL_CONST(5.936291694641113), REAL_CONST(6.000346660614014), REAL_CONST(6.016829967498779), REAL_CONST(6.020981311798096), REAL_CONST(6.022020816802979) },
392
    { REAL_CONST(0.011224525049329), REAL_CONST(0.044351425021887), REAL_CONST(0.169301137328148), REAL_CONST(0.577544987201691), REAL_CONST(1.527246952056885), REAL_CONST(2.887525320053101), REAL_CONST(4.087462902069092), REAL_CONST(4.733354568481445), REAL_CONST(4.959661006927490), REAL_CONST(5.022709369659424), REAL_CONST(5.038940429687500), REAL_CONST(5.043028831481934), REAL_CONST(5.044052600860596) },
393
    { REAL_CONST(0.005623178556561), REAL_CONST(0.022346137091517), REAL_CONST(0.087132595479488), REAL_CONST(0.317482173442841), REAL_CONST(0.956931233406067), REAL_CONST(2.070389270782471), REAL_CONST(3.169924974441528), REAL_CONST(3.786596298217773), REAL_CONST(4.005294322967529), REAL_CONST(4.066420555114746), REAL_CONST(4.082170009613037), REAL_CONST(4.086137294769287), REAL_CONST(4.087131500244141) },
394
    { REAL_CONST(0.002814328996465), REAL_CONST(0.011216334067285), REAL_CONST(0.044224001467228), REAL_CONST(0.167456731200218), REAL_CONST(0.556393325328827), REAL_CONST(1.378511548042297), REAL_CONST(2.321928024291992), REAL_CONST(2.887525320053101), REAL_CONST(3.092446088790894), REAL_CONST(3.150059700012207), REAL_CONST(3.164926528930664), REAL_CONST(3.168673276901245), REAL_CONST(3.169611930847168) },
395
    { REAL_CONST(0.001407850766554), REAL_CONST(0.005619067233056), REAL_CONST(0.022281449288130), REAL_CONST(0.086156636476517), REAL_CONST(0.304854571819305), REAL_CONST(0.847996890544891), REAL_CONST(1.584962487220764), REAL_CONST(2.070389270782471), REAL_CONST(2.252387046813965), REAL_CONST(2.304061651229858), REAL_CONST(2.317430257797241), REAL_CONST(2.320801734924316), REAL_CONST(2.321646213531494) },
396
    { REAL_CONST(0.000704097095877), REAL_CONST(0.002812269143760), REAL_CONST(0.011183738708496), REAL_CONST(0.043721374124289), REAL_CONST(0.160464659333229), REAL_CONST(0.485426813364029), REAL_CONST(1.000000000000000), REAL_CONST(1.378511548042297), REAL_CONST(1.527246952056885), REAL_CONST(1.570089221000671), REAL_CONST(1.581215262413025), REAL_CONST(1.584023833274841), REAL_CONST(1.584727644920349) },
397
    { REAL_CONST(0.000352177477907), REAL_CONST(0.001406819908880), REAL_CONST(0.005602621007711), REAL_CONST(0.022026389837265), REAL_CONST(0.082462236285210), REAL_CONST(0.263034462928772), REAL_CONST(0.584962487220764), REAL_CONST(0.847996890544891), REAL_CONST(0.956931233406067), REAL_CONST(0.988859415054321), REAL_CONST(0.997190535068512), REAL_CONST(0.999296069145203), REAL_CONST(0.999823868274689) },
398
    { REAL_CONST(0.000176099492819), REAL_CONST(0.000703581434209), REAL_CONST(0.002804030198604), REAL_CONST(0.011055230163038), REAL_CONST(0.041820213198662), REAL_CONST(0.137503549456596), REAL_CONST(0.321928083896637), REAL_CONST(0.485426813364029), REAL_CONST(0.556393325328827), REAL_CONST(0.577544987201691), REAL_CONST(0.583090126514435), REAL_CONST(0.584493279457092), REAL_CONST(0.584845066070557) },
399
    { REAL_CONST(0.000088052431238), REAL_CONST(0.000351833587047), REAL_CONST(0.001402696361765), REAL_CONST(0.005538204684854), REAL_CONST(0.021061634644866), REAL_CONST(0.070389263331890), REAL_CONST(0.169925004243851), REAL_CONST(0.263034462928772), REAL_CONST(0.304854571819305), REAL_CONST(0.317482173442841), REAL_CONST(0.320804953575134), REAL_CONST(0.321646571159363), REAL_CONST(0.321857661008835) },
400
    { REAL_CONST(0.000044026888645), REAL_CONST(0.000175927518285), REAL_CONST(0.000701518612914), REAL_CONST(0.002771759871393), REAL_CONST(0.010569252073765), REAL_CONST(0.035623874515295), REAL_CONST(0.087462842464447), REAL_CONST(0.137503549456596), REAL_CONST(0.160464659333229), REAL_CONST(0.167456731200218), REAL_CONST(0.169301137328148), REAL_CONST(0.169768601655960), REAL_CONST(0.169885858893394) },
401
    { REAL_CONST(0.000022013611670), REAL_CONST(0.000088052431238), REAL_CONST(0.000350801943569), REAL_CONST(0.001386545598507), REAL_CONST(0.005294219125062), REAL_CONST(0.017921976745129), REAL_CONST(0.044394120573997), REAL_CONST(0.070389263331890), REAL_CONST(0.082462236285210), REAL_CONST(0.086156636476517), REAL_CONST(0.087132595479488), REAL_CONST(0.087379962205887), REAL_CONST(0.087442122399807) },
402
    { REAL_CONST(0.000011006847672), REAL_CONST(0.000044026888645), REAL_CONST(0.000175411638338), REAL_CONST(0.000693439331371), REAL_CONST(0.002649537986144), REAL_CONST(0.008988817222416), REAL_CONST(0.022367812693119), REAL_CONST(0.035623874515295), REAL_CONST(0.041820213198662), REAL_CONST(0.043721374124289), REAL_CONST(0.044224001467228), REAL_CONST(0.044351425021887), REAL_CONST(0.044383447617292) },
403
    { REAL_CONST(0.000005503434295), REAL_CONST(0.000022013611670), REAL_CONST(0.000087708482170), REAL_CONST(0.000346675369656), REAL_CONST(0.001325377263129), REAL_CONST(0.004501323681325), REAL_CONST(0.011227255687118), REAL_CONST(0.017921976745129), REAL_CONST(0.021061634644866), REAL_CONST(0.022026389837265), REAL_CONST(0.022281449288130), REAL_CONST(0.022346137091517), REAL_CONST(0.022362394258380) },
404
    { REAL_CONST(0.000002751719876), REAL_CONST(0.000011006847672), REAL_CONST(0.000043854910473), REAL_CONST(0.000173348103999), REAL_CONST(0.000662840844598), REAL_CONST(0.002252417383716), REAL_CONST(0.005624548997730), REAL_CONST(0.008988817222416), REAL_CONST(0.010569252073765), REAL_CONST(0.011055230163038), REAL_CONST(0.011183738708496), REAL_CONST(0.011216334067285), REAL_CONST(0.011224525049329) },
405
    { REAL_CONST(0.000001375860506), REAL_CONST(0.000005503434295), REAL_CONST(0.000022013611670), REAL_CONST(0.000086676649516), REAL_CONST(0.000331544462824), REAL_CONST(0.001126734190620), REAL_CONST(0.002815015614033), REAL_CONST(0.004501323681325), REAL_CONST(0.005294219125062), REAL_CONST(0.005538204684854), REAL_CONST(0.005602621007711), REAL_CONST(0.005619067233056), REAL_CONST(0.005623178556561) },
406
    { REAL_CONST(0.000000687930424), REAL_CONST(0.000002751719876), REAL_CONST(0.000011006847672), REAL_CONST(0.000043338975956), REAL_CONST(0.000165781748365), REAL_CONST(0.000563477107789), REAL_CONST(0.001408194424585), REAL_CONST(0.002252417383716), REAL_CONST(0.002649537986144), REAL_CONST(0.002771759871393), REAL_CONST(0.002804030198604), REAL_CONST(0.002812269143760), REAL_CONST(0.002814328996465) },
407
    { REAL_CONST(0.000000343965269), REAL_CONST(0.000001375860506), REAL_CONST(0.000005503434295), REAL_CONST(0.000021669651687), REAL_CONST(0.000082893253420), REAL_CONST(0.000281680084299), REAL_CONST(0.000704268983100), REAL_CONST(0.001126734190620), REAL_CONST(0.001325377263129), REAL_CONST(0.001386545598507), REAL_CONST(0.001402696361765), REAL_CONST(0.001406819908880), REAL_CONST(0.001407850766554) },
408
    { REAL_CONST(0.000000171982634), REAL_CONST(0.000000687930424), REAL_CONST(0.000002751719876), REAL_CONST(0.000010834866771), REAL_CONST(0.000041447223339), REAL_CONST(0.000140846910654), REAL_CONST(0.000352177477907), REAL_CONST(0.000563477107789), REAL_CONST(0.000662840844598), REAL_CONST(0.000693439331371), REAL_CONST(0.000701518612914), REAL_CONST(0.000703581434209), REAL_CONST(0.000704097095877) },
409
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000001375860506), REAL_CONST(0.000005503434295), REAL_CONST(0.000020637769921), REAL_CONST(0.000070511166996), REAL_CONST(0.000176099492819), REAL_CONST(0.000281680084299), REAL_CONST(0.000331544462824), REAL_CONST(0.000346675369656), REAL_CONST(0.000350801943569), REAL_CONST(0.000351833587047), REAL_CONST(0.000352177477907) },
410
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000687930424), REAL_CONST(0.000002751719876), REAL_CONST(0.000010318922250), REAL_CONST(0.000035256012779), REAL_CONST(0.000088052431238), REAL_CONST(0.000140846910654), REAL_CONST(0.000165781748365), REAL_CONST(0.000173348103999), REAL_CONST(0.000175411638338), REAL_CONST(0.000175927518285), REAL_CONST(0.000176099492819) },
411
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000001375860506), REAL_CONST(0.000005159470220), REAL_CONST(0.000017542124624), REAL_CONST(0.000044026888645), REAL_CONST(0.000070511166996), REAL_CONST(0.000082893253420), REAL_CONST(0.000086676649516), REAL_CONST(0.000087708482170), REAL_CONST(0.000088052431238), REAL_CONST(0.000088052431238) },
412
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000687930424), REAL_CONST(0.000002579737384), REAL_CONST(0.000008771088687), REAL_CONST(0.000022013611670), REAL_CONST(0.000035256012779), REAL_CONST(0.000041447223339), REAL_CONST(0.000043338975956), REAL_CONST(0.000043854910473), REAL_CONST(0.000044026888645), REAL_CONST(0.000044026888645) },
413
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000001375860506), REAL_CONST(0.000004471542070), REAL_CONST(0.000011006847672), REAL_CONST(0.000017542124624), REAL_CONST(0.000020637769921), REAL_CONST(0.000021669651687), REAL_CONST(0.000022013611670), REAL_CONST(0.000022013611670), REAL_CONST(0.000022013611670) },
414
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000687930424), REAL_CONST(0.000002235772627), REAL_CONST(0.000005503434295), REAL_CONST(0.000008771088687), REAL_CONST(0.000010318922250), REAL_CONST(0.000010834866771), REAL_CONST(0.000011006847672), REAL_CONST(0.000011006847672), REAL_CONST(0.000011006847672) },
415
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000001031895522), REAL_CONST(0.000002751719876), REAL_CONST(0.000004471542070), REAL_CONST(0.000005159470220), REAL_CONST(0.000005503434295), REAL_CONST(0.000005503434295), REAL_CONST(0.000005503434295), REAL_CONST(0.000005503434295) },
416
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000515947875), REAL_CONST(0.000001375860506), REAL_CONST(0.000002235772627), REAL_CONST(0.000002579737384), REAL_CONST(0.000002751719876), REAL_CONST(0.000002751719876), REAL_CONST(0.000002751719876), REAL_CONST(0.000002751719876) },
417
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000000687930424), REAL_CONST(0.000001031895522), REAL_CONST(0.000001375860506), REAL_CONST(0.000001375860506), REAL_CONST(0.000001375860506), REAL_CONST(0.000001375860506), REAL_CONST(0.000001375860506) },
418
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000343965269), REAL_CONST(0.000000515947875), REAL_CONST(0.000000687930424), REAL_CONST(0.000000687930424), REAL_CONST(0.000000687930424), REAL_CONST(0.000000687930424), REAL_CONST(0.000000687930424) },
419
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269) },
420
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634) }
421
};
422
423
static const real_t log_Qplus1[31] = {
424
    REAL_CONST(6.022367813028454), REAL_CONST(5.044394119358453), REAL_CONST(4.087462841250339),
425
    REAL_CONST(3.169925001442313), REAL_CONST(2.321928094887362), REAL_CONST(1.584962500721156),
426
    REAL_CONST(1.000000000000000), REAL_CONST(0.584962500721156), REAL_CONST(0.321928094887362),
427
    REAL_CONST(0.169925001442312), REAL_CONST(0.087462841250339), REAL_CONST(0.044394119358453),
428
    REAL_CONST(0.022367813028455), REAL_CONST(0.011227255423254), REAL_CONST(0.005624549193878),
429
    REAL_CONST(0.002815015607054), REAL_CONST(0.001408194392808), REAL_CONST(0.000704269011247),
430
    REAL_CONST(0.000352177480301), REAL_CONST(0.000176099486443), REAL_CONST(0.000088052430122),
431
    REAL_CONST(0.000044026886827), REAL_CONST(0.000022013611360), REAL_CONST(0.000011006847667),
432
    REAL_CONST(0.000005503434331), REAL_CONST(0.000002751719790), REAL_CONST(0.000001375860551),
433
    REAL_CONST(0.000000687930439), REAL_CONST(0.000000343965261), REAL_CONST(0.000000171982641),
434
    REAL_CONST(0.000000000000000)
435
};
436
437
static real_t find_log2_Qplus1(sbr_info *sbr, uint8_t k, uint8_t l, uint8_t ch)
438
{
439
    /* check for coupled energy/noise data */
440
    if (sbr->bs_coupling == 1)
441
    {
442
        if ((sbr->Q[0][k][l] >= 0) && (sbr->Q[0][k][l] <= 30) &&
443
            (sbr->Q[1][k][l] >= 0) && (sbr->Q[1][k][l] <= 24))
444
        {
445
            if (ch == 0)
446
            {
447
                return log_Qplus1_pan[sbr->Q[0][k][l]][sbr->Q[1][k][l] >> 1];
448
            } else {
449
                return log_Qplus1_pan[sbr->Q[0][k][l]][12 - (sbr->Q[1][k][l] >> 1)];
450
            }
451
        } else {
452
            return 0;
453
        }
454
    } else {
455
        if (sbr->Q[ch][k][l] >= 0 && sbr->Q[ch][k][l] <= 30)
456
        {
457
            return log_Qplus1[sbr->Q[ch][k][l]];
458
        } else {
459
            return 0;
460
        }
461
    }
462
}
463
464
static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch)
465
{
466
    /* log2 values of limiter gains */
467
    /* Last one less than log2(1e10) due to FIXED POINT float limitations */
468
    static real_t limGain[] = {
469
        REAL_CONST(-1.0), REAL_CONST(0.0), REAL_CONST(1.0), REAL_CONST(21.0)
470
    };
471
    uint8_t m, l, k;
472
473
    uint8_t current_t_noise_band = 0;
474
    uint8_t S_mapped;
475
476
    ALIGN real_t Q_M_lim[MAX_M];
477
    ALIGN real_t G_lim[MAX_M];
478
    ALIGN real_t G_boost;
479
    ALIGN real_t S_M[MAX_M];
480
481
    real_t exp = REAL_CONST(-10);
482
483
    for (l = 0; l < sbr->L_E[ch]; l++)
484
    {
485
        uint8_t current_f_noise_band = 0;
486
        uint8_t current_res_band = 0;
487
        uint8_t current_res_band2 = 0;
488
        uint8_t current_hi_res_band = 0;
489
490
        real_t delta = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 0 : 1;
491
492
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
493
494
        if (sbr->t_E[ch][l+1] > sbr->t_Q[ch][current_t_noise_band+1])
495
        {
496
            current_t_noise_band++;
497
        }
498
499
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
500
        {
501
            real_t Q_M = 0;
502
            real_t G_max;
503
            uint64_t den = 0, acc1 = 0, acc2 = 0;
504
            uint8_t current_res_band_size = 0;
505
            uint8_t Q_M_size = 0;
506
            real_t log_e, log_den, log_acc1, log_acc2;
507
508
            uint8_t ml1, ml2;
509
510
            /* bounds of current limiter bands */
511
            ml1 = sbr->f_table_lim[sbr->bs_limiter_bands][k];
512
            ml2 = sbr->f_table_lim[sbr->bs_limiter_bands][k+1];
513
514
            if (ml1 > MAX_M)
515
                ml1 = MAX_M;
516
517
            if (ml2 > MAX_M)
518
                ml2 = MAX_M;
519
520
521
            /* calculate the accumulated E_orig and E_curr over the limiter band */
522
            for (m = ml1; m < ml2; m++)
523
            {
524
                if ((m + sbr->kx) < sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
525
                {
526
                    current_res_band_size++;
527
                } else {
528
                    log_e = find_log2_E(sbr, current_res_band, l, ch);
529
                    acc1 += pow2_int(exp + log2_int_tab[current_res_band_size] + log_e);
530
531
                    current_res_band++;
532
                    current_res_band_size = 1;
533
                }
534
535
                acc2 += sbr->E_curr[ch][m][l];
536
            }
537
            if (current_res_band_size) {
538
                log_e = find_log2_E(sbr, current_res_band, l, ch);
539
                acc1 += pow2_int(exp + log2_int_tab[current_res_band_size] + log_e);
540
            }
541
542
543
            if (acc1 == 0)
544
                log_acc1 = LOG2_MIN_INF;
545
            else
546
                log_acc1 = log2_int(acc1);
547
548
            if (acc2 == 0)
549
                log_acc2 = LOG2_MIN_INF;
550
            else
551
                log_acc2 = log2_int(acc2);
552
553
            /* calculate the maximum gain */
554
            /* ratio of the energy of the original signal and the energy
555
             * of the HF generated signal
556
             */
557
            G_max = log_acc1 - log_acc2 + limGain[sbr->bs_limiter_gains];
558
            G_max = min(G_max, limGain[3]);
559
560
561
            for (m = ml1; m < ml2; m++)
562
            {
563
                real_t G;
564
                real_t E_curr, E_orig;
565
                real_t Q_orig, Q_orig_plus1;
566
                uint8_t S_index_mapped;
567
568
569
                /* check if m is on a noise band border */
570
                if ((m + sbr->kx) == sbr->f_table_noise[current_f_noise_band+1])
571
                {
572
                    /* step to next noise band */
573
                    current_f_noise_band++;
574
                }
575
576
577
                /* check if m is on a resolution band border */
578
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band2+1])
579
                {
580
                    /* accumulate a whole range of equal Q_Ms */
581
                    if (Q_M_size > 0)
582
                        den += pow2_int(log2_int_tab[Q_M_size] + Q_M);
583
                    Q_M_size = 0;
584
585
                    /* step to next resolution band */
586
                    current_res_band2++;
587
588
                    /* if we move to a new resolution band, we should check if we are
589
                     * going to add a sinusoid in this band
590
                     */
591
                    S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
592
                }
593
594
595
                /* check if m is on a HI_RES band border */
596
                if ((m + sbr->kx) == sbr->f_table_res[HI_RES][current_hi_res_band+1])
597
                {
598
                    /* step to next HI_RES band */
599
                    current_hi_res_band++;
600
                }
601
602
603
                /* find S_index_mapped
604
                 * S_index_mapped can only be 1 for the m in the middle of the
605
                 * current HI_RES band
606
                 */
607
                S_index_mapped = 0;
608
                if ((l >= sbr->l_A[ch]) ||
609
                    (sbr->bs_add_harmonic_prev[ch][current_hi_res_band] && sbr->bs_add_harmonic_flag_prev[ch]))
610
                {
611
                    /* find the middle subband of the HI_RES frequency band */
612
                    if ((m + sbr->kx) == (sbr->f_table_res[HI_RES][current_hi_res_band+1] + sbr->f_table_res[HI_RES][current_hi_res_band]) >> 1)
613
                        S_index_mapped = sbr->bs_add_harmonic[ch][current_hi_res_band];
614
                }
615
616
617
                /* find bitstream parameters */
618
                if (sbr->E_curr[ch][m][l] == 0)
619
                    E_curr = LOG2_MIN_INF;
620
                else
621
                    E_curr = log2_int(sbr->E_curr[ch][m][l]);
622
                E_orig = exp + find_log2_E(sbr, current_res_band2, l, ch);
623
624
625
                Q_orig = find_log2_Q(sbr, current_f_noise_band, current_t_noise_band, ch);
626
                Q_orig_plus1 = find_log2_Qplus1(sbr, current_f_noise_band, current_t_noise_band, ch);
627
628
629
                /* Q_M only depends on E_orig and Q_div2:
630
                 * since N_Q <= N_Low <= N_High we only need to recalculate Q_M on
631
                 * a change of current res band (HI or LO)
632
                 */
633
                Q_M = E_orig + Q_orig - Q_orig_plus1;
634
635
636
                /* S_M only depends on E_orig, Q_div and S_index_mapped:
637
                 * S_index_mapped can only be non-zero once per HI_RES band
638
                 */
639
                if (S_index_mapped == 0)
640
                {
641
                    S_M[m] = LOG2_MIN_INF; /* -inf */
642
                } else {
643
                    S_M[m] = E_orig - Q_orig_plus1;
644
                    S_M[m] = min(S_M[m], limGain[3]);
645
646
                    /* accumulate sinusoid part of the total energy */
647
                    den += pow2_int(S_M[m]);
648
                }
649
650
651
                /* calculate gain */
652
                /* ratio of the energy of the original signal and the energy
653
                 * of the HF generated signal
654
                 */
655
                /* E_curr here is officially E_curr+1 so the log2() of that can never be < 0 */
656
                /* scaled by exp */
657
                G = E_orig - max(exp, E_curr);
658
                if ((S_mapped == 0) && (delta == 1))
659
                {
660
                    /* G = G * 1/(1+Q) */
661
                    G -= Q_orig_plus1;
662
                } else if (S_mapped == 1) {
663
                    /* G = G * Q/(1+Q) */
664
                    G += Q_orig - Q_orig_plus1;
665
                }
666
667
668
                /* limit the additional noise energy level */
669
                /* and apply the limiter */
670
                if (G_max > G)
671
                {
672
                    Q_M_lim[m] = Q_M;
673
                    G_lim[m] = G;
674
675
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
676
                    {
677
                        Q_M_size++;
678
                    }
679
                } else {
680
                    /* G >= G_max */
681
                    Q_M_lim[m] = Q_M + G_max - G;
682
                    G_lim[m] = G_max;
683
684
                    /* accumulate limited Q_M */
685
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
686
                    {
687
                        den += pow2_int(Q_M_lim[m]);
688
                    }
689
                }
690
691
692
                /* accumulate the total energy */
693
                /* E_curr changes for every m so we do need to accumulate every m */
694
                den += pow2_int(E_curr + G_lim[m]);
695
            }
696
697
            /* accumulate last range of equal Q_Ms */
698
            if (Q_M_size > 0)
699
            {
700
                den += pow2_int(log2_int_tab[Q_M_size] + Q_M);
701
            }
702
703
            if (den == 0)
704
                log_den = LOG2_MIN_INF;
705
            else
706
                log_den = log2_int(den /*+ EPS*/);
707
708
            /* calculate the final gain */
709
            /* G_boost: [0..2.51188643] */
710
            G_boost = log_acc1 - log_den;
711
            G_boost = min(G_boost, REAL_CONST(1.328771237) /* log2(1.584893192 ^ 2) */);
712
713
714
            for (m = ml1; m < ml2; m++)
715
            {
716
                /* apply compensation to gain, noise floor sf's and sinusoid levels */
717
#ifndef SBR_LOW_POWER
718
                adj->G_lim_boost[l][m] = pow2_fix((G_lim[m] + G_boost) >> 1);
719
#else
720
                /* sqrt() will be done after the aliasing reduction to save a
721
                 * few multiplies
722
                 */
723
                adj->G_lim_boost[l][m] = pow2_fix(G_lim[m] + G_boost);
724
#endif
725
                adj->Q_M_lim_boost[l][m] = pow2_fix((Q_M_lim[m] + G_boost) >> 1);
726
727
                adj->S_M_boost[l][m] = pow2_fix((S_M[m] + G_boost) >> 1);
728
            }
729
        }
730
    }
731
}
732
733
#else
734
735
//#define LOG2_TEST
736
737
#ifdef LOG2_TEST
738
739
#define LOG2_MIN_INF -100000
740
741
__inline float pow2(float val)
742
{
743
    return pow(2.0, val);
744
}
745
__inline float log2(float val)
746
{
747
    return log(val)/log(2.0);
748
}
749
750
#define RB 14
751
752
float QUANTISE2REAL(float val)
753
{
754
    __int32 ival = (__int32)(val * (1<<RB));
755
    return (float)ival / (float)((1<<RB));
756
}
757
758
float QUANTISE2INT(float val)
759
{
760
    return floor(val);
761
}
762
763
/* log2 values of [0..63] */
764
static const real_t log2_int_tab[] = {
765
    LOG2_MIN_INF,      0.000000000000000, 1.000000000000000, 1.584962500721156,
766
    2.000000000000000, 2.321928094887362, 2.584962500721156, 2.807354922057604,
767
    3.000000000000000, 3.169925001442313, 3.321928094887363, 3.459431618637297,
768
    3.584962500721156, 3.700439718141092, 3.807354922057604, 3.906890595608519,
769
    4.000000000000000, 4.087462841250339, 4.169925001442312, 4.247927513443585,
770
    4.321928094887362, 4.392317422778761, 4.459431618637297, 4.523561956057013,
771
    4.584962500721156, 4.643856189774724, 4.700439718141093, 4.754887502163468,
772
    4.807354922057604, 4.857980995127572, 4.906890595608519, 4.954196310386875,
773
    5.000000000000000, 5.044394119358453, 5.087462841250340, 5.129283016944966,
774
    5.169925001442312, 5.209453365628949, 5.247927513443585, 5.285402218862248,
775
    5.321928094887363, 5.357552004618084, 5.392317422778761, 5.426264754702098,
776
    5.459431618637297, 5.491853096329675, 5.523561956057013, 5.554588851677637,
777
    5.584962500721156, 5.614709844115208, 5.643856189774724, 5.672425341971495,
778
    5.700439718141093, 5.727920454563200, 5.754887502163469, 5.781359713524660,
779
    5.807354922057605, 5.832890014164742, 5.857980995127572, 5.882643049361842,
780
    5.906890595608518, 5.930737337562887, 5.954196310386876, 5.977279923499916
781
};
782
783
static const real_t pan_log2_tab[] = {
784
    1.000000000000000, 0.584962500721156, 0.321928094887362, 0.169925001442312, 0.087462841250339,
785
    0.044394119358453, 0.022367813028455, 0.011227255423254, 0.005624549193878, 0.002815015607054,
786
    0.001408194392808, 0.000704269011247, 0.000352177480301, 0.000176099486443, 0.000088052430122,
787
    0.000044026886827, 0.000022013611360, 0.000011006847667
788
};
789
790
static real_t find_log2_E(sbr_info *sbr, uint8_t k, uint8_t l, uint8_t ch)
791
{
792
    /* check for coupled energy/noise data */
793
    if (sbr->bs_coupling == 1)
794
    {
795
        real_t amp0 = (sbr->amp_res[0]) ? 1.0 : 0.5;
796
        real_t amp1 = (sbr->amp_res[1]) ? 1.0 : 0.5;
797
        float tmp = QUANTISE2REAL(7.0 + (real_t)sbr->E[0][k][l] * amp0);
798
        float pan;
799
800
        int E = (int)(sbr->E[1][k][l] * amp1);
801
802
        if (ch == 0)
803
        {
804
            if (E > 12)
805
            {
806
                /* negative */
807
                pan = QUANTISE2REAL(pan_log2_tab[-12 + E]);
808
            } else {
809
                /* positive */
810
                pan = QUANTISE2REAL(pan_log2_tab[12 - E] + (12 - E));
811
            }
812
        } else {
813
            if (E < 12)
814
            {
815
                /* negative */
816
                pan = QUANTISE2REAL(pan_log2_tab[-E + 12]);
817
            } else {
818
                /* positive */
819
                pan = QUANTISE2REAL(pan_log2_tab[E - 12] + (E - 12));
820
            }
821
        }
822
823
        /* tmp / pan in log2 */
824
        return QUANTISE2REAL(tmp - pan);
825
    } else {
826
        real_t amp = (sbr->amp_res[ch]) ? 1.0 : 0.5;
827
828
        return QUANTISE2REAL(6.0 + (real_t)sbr->E[ch][k][l] * amp);
829
    }
830
}
831
832
static real_t find_log2_Q(sbr_info *sbr, uint8_t k, uint8_t l, uint8_t ch)
833
{
834
    /* check for coupled energy/noise data */
835
    if (sbr->bs_coupling == 1)
836
    {
837
        float tmp = QUANTISE2REAL(7.0 - (real_t)sbr->Q[0][k][l]);
838
        float pan;
839
840
        int Q = (int)(sbr->Q[1][k][l]);
841
842
        if (ch == 0)
843
        {
844
            if (Q > 12)
845
            {
846
                /* negative */
847
                pan = QUANTISE2REAL(pan_log2_tab[-12 + Q]);
848
            } else {
849
                /* positive */
850
                pan = QUANTISE2REAL(pan_log2_tab[12 - Q] + (12 - Q));
851
            }
852
        } else {
853
            if (Q < 12)
854
            {
855
                /* negative */
856
                pan = QUANTISE2REAL(pan_log2_tab[-Q + 12]);
857
            } else {
858
                /* positive */
859
                pan = QUANTISE2REAL(pan_log2_tab[Q - 12] + (Q - 12));
860
            }
861
        }
862
863
        /* tmp / pan in log2 */
864
        return QUANTISE2REAL(tmp - pan);
865
    } else {
866
        return QUANTISE2REAL(6.0 - (real_t)sbr->Q[ch][k][l]);
867
    }
868
}
869
870
static const real_t log_Qplus1_pan[31][13] = {
871
    { REAL_CONST(0.044383447617292), REAL_CONST(0.169768601655960), REAL_CONST(0.583090126514435), REAL_CONST(1.570089221000671), REAL_CONST(3.092446088790894), REAL_CONST(4.733354568481445), REAL_CONST(6.022367954254150), REAL_CONST(6.692092418670654), REAL_CONST(6.924463272094727), REAL_CONST(6.989034175872803), REAL_CONST(7.005646705627441), REAL_CONST(7.009829998016357), REAL_CONST(7.010877609252930) },
872
    { REAL_CONST(0.022362394258380), REAL_CONST(0.087379962205887), REAL_CONST(0.320804953575134), REAL_CONST(0.988859415054321), REAL_CONST(2.252387046813965), REAL_CONST(3.786596298217773), REAL_CONST(5.044394016265869), REAL_CONST(5.705977916717529), REAL_CONST(5.936291694641113), REAL_CONST(6.000346660614014), REAL_CONST(6.016829967498779), REAL_CONST(6.020981311798096), REAL_CONST(6.022020816802979) },
873
    { REAL_CONST(0.011224525049329), REAL_CONST(0.044351425021887), REAL_CONST(0.169301137328148), REAL_CONST(0.577544987201691), REAL_CONST(1.527246952056885), REAL_CONST(2.887525320053101), REAL_CONST(4.087462902069092), REAL_CONST(4.733354568481445), REAL_CONST(4.959661006927490), REAL_CONST(5.022709369659424), REAL_CONST(5.038940429687500), REAL_CONST(5.043028831481934), REAL_CONST(5.044052600860596) },
874
    { REAL_CONST(0.005623178556561), REAL_CONST(0.022346137091517), REAL_CONST(0.087132595479488), REAL_CONST(0.317482173442841), REAL_CONST(0.956931233406067), REAL_CONST(2.070389270782471), REAL_CONST(3.169924974441528), REAL_CONST(3.786596298217773), REAL_CONST(4.005294322967529), REAL_CONST(4.066420555114746), REAL_CONST(4.082170009613037), REAL_CONST(4.086137294769287), REAL_CONST(4.087131500244141) },
875
    { REAL_CONST(0.002814328996465), REAL_CONST(0.011216334067285), REAL_CONST(0.044224001467228), REAL_CONST(0.167456731200218), REAL_CONST(0.556393325328827), REAL_CONST(1.378511548042297), REAL_CONST(2.321928024291992), REAL_CONST(2.887525320053101), REAL_CONST(3.092446088790894), REAL_CONST(3.150059700012207), REAL_CONST(3.164926528930664), REAL_CONST(3.168673276901245), REAL_CONST(3.169611930847168) },
876
    { REAL_CONST(0.001407850766554), REAL_CONST(0.005619067233056), REAL_CONST(0.022281449288130), REAL_CONST(0.086156636476517), REAL_CONST(0.304854571819305), REAL_CONST(0.847996890544891), REAL_CONST(1.584962487220764), REAL_CONST(2.070389270782471), REAL_CONST(2.252387046813965), REAL_CONST(2.304061651229858), REAL_CONST(2.317430257797241), REAL_CONST(2.320801734924316), REAL_CONST(2.321646213531494) },
877
    { REAL_CONST(0.000704097095877), REAL_CONST(0.002812269143760), REAL_CONST(0.011183738708496), REAL_CONST(0.043721374124289), REAL_CONST(0.160464659333229), REAL_CONST(0.485426813364029), REAL_CONST(1.000000000000000), REAL_CONST(1.378511548042297), REAL_CONST(1.527246952056885), REAL_CONST(1.570089221000671), REAL_CONST(1.581215262413025), REAL_CONST(1.584023833274841), REAL_CONST(1.584727644920349) },
878
    { REAL_CONST(0.000352177477907), REAL_CONST(0.001406819908880), REAL_CONST(0.005602621007711), REAL_CONST(0.022026389837265), REAL_CONST(0.082462236285210), REAL_CONST(0.263034462928772), REAL_CONST(0.584962487220764), REAL_CONST(0.847996890544891), REAL_CONST(0.956931233406067), REAL_CONST(0.988859415054321), REAL_CONST(0.997190535068512), REAL_CONST(0.999296069145203), REAL_CONST(0.999823868274689) },
879
    { REAL_CONST(0.000176099492819), REAL_CONST(0.000703581434209), REAL_CONST(0.002804030198604), REAL_CONST(0.011055230163038), REAL_CONST(0.041820213198662), REAL_CONST(0.137503549456596), REAL_CONST(0.321928083896637), REAL_CONST(0.485426813364029), REAL_CONST(0.556393325328827), REAL_CONST(0.577544987201691), REAL_CONST(0.583090126514435), REAL_CONST(0.584493279457092), REAL_CONST(0.584845066070557) },
880
    { REAL_CONST(0.000088052431238), REAL_CONST(0.000351833587047), REAL_CONST(0.001402696361765), REAL_CONST(0.005538204684854), REAL_CONST(0.021061634644866), REAL_CONST(0.070389263331890), REAL_CONST(0.169925004243851), REAL_CONST(0.263034462928772), REAL_CONST(0.304854571819305), REAL_CONST(0.317482173442841), REAL_CONST(0.320804953575134), REAL_CONST(0.321646571159363), REAL_CONST(0.321857661008835) },
881
    { REAL_CONST(0.000044026888645), REAL_CONST(0.000175927518285), REAL_CONST(0.000701518612914), REAL_CONST(0.002771759871393), REAL_CONST(0.010569252073765), REAL_CONST(0.035623874515295), REAL_CONST(0.087462842464447), REAL_CONST(0.137503549456596), REAL_CONST(0.160464659333229), REAL_CONST(0.167456731200218), REAL_CONST(0.169301137328148), REAL_CONST(0.169768601655960), REAL_CONST(0.169885858893394) },
882
    { REAL_CONST(0.000022013611670), REAL_CONST(0.000088052431238), REAL_CONST(0.000350801943569), REAL_CONST(0.001386545598507), REAL_CONST(0.005294219125062), REAL_CONST(0.017921976745129), REAL_CONST(0.044394120573997), REAL_CONST(0.070389263331890), REAL_CONST(0.082462236285210), REAL_CONST(0.086156636476517), REAL_CONST(0.087132595479488), REAL_CONST(0.087379962205887), REAL_CONST(0.087442122399807) },
883
    { REAL_CONST(0.000011006847672), REAL_CONST(0.000044026888645), REAL_CONST(0.000175411638338), REAL_CONST(0.000693439331371), REAL_CONST(0.002649537986144), REAL_CONST(0.008988817222416), REAL_CONST(0.022367812693119), REAL_CONST(0.035623874515295), REAL_CONST(0.041820213198662), REAL_CONST(0.043721374124289), REAL_CONST(0.044224001467228), REAL_CONST(0.044351425021887), REAL_CONST(0.044383447617292) },
884
    { REAL_CONST(0.000005503434295), REAL_CONST(0.000022013611670), REAL_CONST(0.000087708482170), REAL_CONST(0.000346675369656), REAL_CONST(0.001325377263129), REAL_CONST(0.004501323681325), REAL_CONST(0.011227255687118), REAL_CONST(0.017921976745129), REAL_CONST(0.021061634644866), REAL_CONST(0.022026389837265), REAL_CONST(0.022281449288130), REAL_CONST(0.022346137091517), REAL_CONST(0.022362394258380) },
885
    { REAL_CONST(0.000002751719876), REAL_CONST(0.000011006847672), REAL_CONST(0.000043854910473), REAL_CONST(0.000173348103999), REAL_CONST(0.000662840844598), REAL_CONST(0.002252417383716), REAL_CONST(0.005624548997730), REAL_CONST(0.008988817222416), REAL_CONST(0.010569252073765), REAL_CONST(0.011055230163038), REAL_CONST(0.011183738708496), REAL_CONST(0.011216334067285), REAL_CONST(0.011224525049329) },
886
    { REAL_CONST(0.000001375860506), REAL_CONST(0.000005503434295), REAL_CONST(0.000022013611670), REAL_CONST(0.000086676649516), REAL_CONST(0.000331544462824), REAL_CONST(0.001126734190620), REAL_CONST(0.002815015614033), REAL_CONST(0.004501323681325), REAL_CONST(0.005294219125062), REAL_CONST(0.005538204684854), REAL_CONST(0.005602621007711), REAL_CONST(0.005619067233056), REAL_CONST(0.005623178556561) },
887
    { REAL_CONST(0.000000687930424), REAL_CONST(0.000002751719876), REAL_CONST(0.000011006847672), REAL_CONST(0.000043338975956), REAL_CONST(0.000165781748365), REAL_CONST(0.000563477107789), REAL_CONST(0.001408194424585), REAL_CONST(0.002252417383716), REAL_CONST(0.002649537986144), REAL_CONST(0.002771759871393), REAL_CONST(0.002804030198604), REAL_CONST(0.002812269143760), REAL_CONST(0.002814328996465) },
888
    { REAL_CONST(0.000000343965269), REAL_CONST(0.000001375860506), REAL_CONST(0.000005503434295), REAL_CONST(0.000021669651687), REAL_CONST(0.000082893253420), REAL_CONST(0.000281680084299), REAL_CONST(0.000704268983100), REAL_CONST(0.001126734190620), REAL_CONST(0.001325377263129), REAL_CONST(0.001386545598507), REAL_CONST(0.001402696361765), REAL_CONST(0.001406819908880), REAL_CONST(0.001407850766554) },
889
    { REAL_CONST(0.000000171982634), REAL_CONST(0.000000687930424), REAL_CONST(0.000002751719876), REAL_CONST(0.000010834866771), REAL_CONST(0.000041447223339), REAL_CONST(0.000140846910654), REAL_CONST(0.000352177477907), REAL_CONST(0.000563477107789), REAL_CONST(0.000662840844598), REAL_CONST(0.000693439331371), REAL_CONST(0.000701518612914), REAL_CONST(0.000703581434209), REAL_CONST(0.000704097095877) },
890
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000001375860506), REAL_CONST(0.000005503434295), REAL_CONST(0.000020637769921), REAL_CONST(0.000070511166996), REAL_CONST(0.000176099492819), REAL_CONST(0.000281680084299), REAL_CONST(0.000331544462824), REAL_CONST(0.000346675369656), REAL_CONST(0.000350801943569), REAL_CONST(0.000351833587047), REAL_CONST(0.000352177477907) },
891
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000687930424), REAL_CONST(0.000002751719876), REAL_CONST(0.000010318922250), REAL_CONST(0.000035256012779), REAL_CONST(0.000088052431238), REAL_CONST(0.000140846910654), REAL_CONST(0.000165781748365), REAL_CONST(0.000173348103999), REAL_CONST(0.000175411638338), REAL_CONST(0.000175927518285), REAL_CONST(0.000176099492819) },
892
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000001375860506), REAL_CONST(0.000005159470220), REAL_CONST(0.000017542124624), REAL_CONST(0.000044026888645), REAL_CONST(0.000070511166996), REAL_CONST(0.000082893253420), REAL_CONST(0.000086676649516), REAL_CONST(0.000087708482170), REAL_CONST(0.000088052431238), REAL_CONST(0.000088052431238) },
893
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000687930424), REAL_CONST(0.000002579737384), REAL_CONST(0.000008771088687), REAL_CONST(0.000022013611670), REAL_CONST(0.000035256012779), REAL_CONST(0.000041447223339), REAL_CONST(0.000043338975956), REAL_CONST(0.000043854910473), REAL_CONST(0.000044026888645), REAL_CONST(0.000044026888645) },
894
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000001375860506), REAL_CONST(0.000004471542070), REAL_CONST(0.000011006847672), REAL_CONST(0.000017542124624), REAL_CONST(0.000020637769921), REAL_CONST(0.000021669651687), REAL_CONST(0.000022013611670), REAL_CONST(0.000022013611670), REAL_CONST(0.000022013611670) },
895
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000687930424), REAL_CONST(0.000002235772627), REAL_CONST(0.000005503434295), REAL_CONST(0.000008771088687), REAL_CONST(0.000010318922250), REAL_CONST(0.000010834866771), REAL_CONST(0.000011006847672), REAL_CONST(0.000011006847672), REAL_CONST(0.000011006847672) },
896
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000001031895522), REAL_CONST(0.000002751719876), REAL_CONST(0.000004471542070), REAL_CONST(0.000005159470220), REAL_CONST(0.000005503434295), REAL_CONST(0.000005503434295), REAL_CONST(0.000005503434295), REAL_CONST(0.000005503434295) },
897
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000515947875), REAL_CONST(0.000001375860506), REAL_CONST(0.000002235772627), REAL_CONST(0.000002579737384), REAL_CONST(0.000002751719876), REAL_CONST(0.000002751719876), REAL_CONST(0.000002751719876), REAL_CONST(0.000002751719876) },
898
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000343965269), REAL_CONST(0.000000687930424), REAL_CONST(0.000001031895522), REAL_CONST(0.000001375860506), REAL_CONST(0.000001375860506), REAL_CONST(0.000001375860506), REAL_CONST(0.000001375860506), REAL_CONST(0.000001375860506) },
899
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000343965269), REAL_CONST(0.000000515947875), REAL_CONST(0.000000687930424), REAL_CONST(0.000000687930424), REAL_CONST(0.000000687930424), REAL_CONST(0.000000687930424), REAL_CONST(0.000000687930424) },
900
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269), REAL_CONST(0.000000343965269) },
901
    { REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000000000000), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634), REAL_CONST(0.000000171982634) }
902
};
903
904
static const real_t log_Qplus1[31] = {
905
    REAL_CONST(6.022367813028454), REAL_CONST(5.044394119358453), REAL_CONST(4.087462841250339),
906
    REAL_CONST(3.169925001442313), REAL_CONST(2.321928094887362), REAL_CONST(1.584962500721156),
907
    REAL_CONST(1.000000000000000), REAL_CONST(0.584962500721156), REAL_CONST(0.321928094887362),
908
    REAL_CONST(0.169925001442312), REAL_CONST(0.087462841250339), REAL_CONST(0.044394119358453),
909
    REAL_CONST(0.022367813028455), REAL_CONST(0.011227255423254), REAL_CONST(0.005624549193878),
910
    REAL_CONST(0.002815015607054), REAL_CONST(0.001408194392808), REAL_CONST(0.000704269011247),
911
    REAL_CONST(0.000352177480301), REAL_CONST(0.000176099486443), REAL_CONST(0.000088052430122),
912
    REAL_CONST(0.000044026886827), REAL_CONST(0.000022013611360), REAL_CONST(0.000011006847667),
913
    REAL_CONST(0.000005503434331), REAL_CONST(0.000002751719790), REAL_CONST(0.000001375860551),
914
    REAL_CONST(0.000000687930439), REAL_CONST(0.000000343965261), REAL_CONST(0.000000171982641),
915
    REAL_CONST(0.000000000000000)
916
};
917
918
static real_t find_log2_Qplus1(sbr_info *sbr, uint8_t k, uint8_t l, uint8_t ch)
919
{
920
    /* check for coupled energy/noise data */
921
    if (sbr->bs_coupling == 1)
922
    {
923
        if ((sbr->Q[0][k][l] >= 0) && (sbr->Q[0][k][l] <= 30) &&
924
            (sbr->Q[1][k][l] >= 0) && (sbr->Q[1][k][l] <= 24))
925
        {
926
            if (ch == 0)
927
            {
928
                return QUANTISE2REAL(log_Qplus1_pan[sbr->Q[0][k][l]][sbr->Q[1][k][l] >> 1]);
929
            } else {
930
                return QUANTISE2REAL(log_Qplus1_pan[sbr->Q[0][k][l]][12 - (sbr->Q[1][k][l] >> 1)]);
931
            }
932
        } else {
933
            return 0;
934
        }
935
    } else {
936
        if (sbr->Q[ch][k][l] >= 0 && sbr->Q[ch][k][l] <= 30)
937
        {
938
            return QUANTISE2REAL(log_Qplus1[sbr->Q[ch][k][l]]);
939
        } else {
940
            return 0;
941
        }
942
    }
943
}
944
945
static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch)
946
{
947
    /* log2 values of limiter gains */
948
    static real_t limGain[] = { -1.0, 0.0, 1.0, 33.219 };
949
    uint8_t m, l, k;
950
951
    uint8_t current_t_noise_band = 0;
952
    uint8_t S_mapped;
953
954
    ALIGN real_t Q_M_lim[MAX_M];
955
    ALIGN real_t G_lim[MAX_M];
956
    ALIGN real_t G_boost;
957
    ALIGN real_t S_M[MAX_M];
958
959
960
    for (l = 0; l < sbr->L_E[ch]; l++)
961
    {
962
        uint8_t current_f_noise_band = 0;
963
        uint8_t current_res_band = 0;
964
        uint8_t current_res_band2 = 0;
965
        uint8_t current_hi_res_band = 0;
966
967
        real_t delta = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 0 : 1;
968
969
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
970
971
        if (sbr->t_E[ch][l+1] > sbr->t_Q[ch][current_t_noise_band+1])
972
        {
973
            current_t_noise_band++;
974
        }
975
976
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
977
        {
978
            real_t Q_M = 0;
979
            real_t G_max;
980
            real_t den = 0;
981
            real_t acc1 = 0;
982
            real_t acc2 = 0;
983
            uint8_t current_res_band_size = 0;
984
            uint8_t Q_M_size = 0;
985
986
            uint8_t ml1, ml2;
987
988
            /* bounds of current limiter bands */
989
            ml1 = sbr->f_table_lim[sbr->bs_limiter_bands][k];
990
            ml2 = sbr->f_table_lim[sbr->bs_limiter_bands][k+1];
991
992
            if (ml1 > MAX_M)
993
                ml1 = MAX_M;
994
995
            if (ml2 > MAX_M)
996
                ml2 = MAX_M;
997
998
999
            /* calculate the accumulated E_orig and E_curr over the limiter band */
1000
            for (m = ml1; m < ml2; m++)
1001
            {
1002
                if ((m + sbr->kx) < sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
1003
                {
1004
                    current_res_band_size++;
1005
                } else {
1006
                    acc1 += QUANTISE2INT(pow2(-10 + log2_int_tab[current_res_band_size] + find_log2_E(sbr, current_res_band, l, ch)));
1007
1008
                    current_res_band++;
1009
                    current_res_band_size = 1;
1010
                }
1011
1012
                acc2 += QUANTISE2INT(sbr->E_curr[ch][m][l]/1024.0);
1013
            }
1014
            acc1 += QUANTISE2INT(pow2(-10 + log2_int_tab[current_res_band_size] + find_log2_E(sbr, current_res_band, l, ch)));
1015
1016
            acc1 = QUANTISE2REAL( log2(EPS + acc1) );
1017
1018
1019
            /* calculate the maximum gain */
1020
            /* ratio of the energy of the original signal and the energy
1021
             * of the HF generated signal
1022
             */
1023
            G_max = acc1 - QUANTISE2REAL(log2(EPS + acc2)) + QUANTISE2REAL(limGain[sbr->bs_limiter_gains]);
1024
            G_max = min(G_max, QUANTISE2REAL(limGain[3]));
1025
1026
1027
            for (m = ml1; m < ml2; m++)
1028
            {
1029
                real_t G;
1030
                real_t E_curr, E_orig;
1031
                real_t Q_orig, Q_orig_plus1;
1032
                uint8_t S_index_mapped;
1033
1034
1035
                /* check if m is on a noise band border */
1036
                if ((m + sbr->kx) == sbr->f_table_noise[current_f_noise_band+1])
1037
                {
1038
                    /* step to next noise band */
1039
                    current_f_noise_band++;
1040
                }
1041
1042
1043
                /* check if m is on a resolution band border */
1044
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band2+1])
1045
                {
1046
                    /* accumulate a whole range of equal Q_Ms */
1047
                    if (Q_M_size > 0)
1048
                        den += QUANTISE2INT(pow2(log2_int_tab[Q_M_size] + Q_M));
1049
                    Q_M_size = 0;
1050
1051
                    /* step to next resolution band */
1052
                    current_res_band2++;
1053
1054
                    /* if we move to a new resolution band, we should check if we are
1055
                     * going to add a sinusoid in this band
1056
                     */
1057
                    S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
1058
                }
1059
1060
1061
                /* check if m is on a HI_RES band border */
1062
                if ((m + sbr->kx) == sbr->f_table_res[HI_RES][current_hi_res_band+1])
1063
                {
1064
                    /* step to next HI_RES band */
1065
                    current_hi_res_band++;
1066
                }
1067
1068
1069
                /* find S_index_mapped
1070
                 * S_index_mapped can only be 1 for the m in the middle of the
1071
                 * current HI_RES band
1072
                 */
1073
                S_index_mapped = 0;
1074
                if ((l >= sbr->l_A[ch]) ||
1075
                    (sbr->bs_add_harmonic_prev[ch][current_hi_res_band] && sbr->bs_add_harmonic_flag_prev[ch]))
1076
                {
1077
                    /* find the middle subband of the HI_RES frequency band */
1078
                    if ((m + sbr->kx) == (sbr->f_table_res[HI_RES][current_hi_res_band+1] + sbr->f_table_res[HI_RES][current_hi_res_band]) >> 1)
1079
                        S_index_mapped = sbr->bs_add_harmonic[ch][current_hi_res_band];
1080
                }
1081
1082
1083
                /* find bitstream parameters */
1084
                if (sbr->E_curr[ch][m][l] == 0)
1085
                    E_curr = LOG2_MIN_INF;
1086
                else
1087
                    E_curr = -10 + log2(sbr->E_curr[ch][m][l]);
1088
                E_orig = -10 + find_log2_E(sbr, current_res_band2, l, ch);
1089
1090
                Q_orig = find_log2_Q(sbr, current_f_noise_band, current_t_noise_band, ch);
1091
                Q_orig_plus1 = find_log2_Qplus1(sbr, current_f_noise_band, current_t_noise_band, ch);
1092
1093
1094
                /* Q_M only depends on E_orig and Q_div2:
1095
                 * since N_Q <= N_Low <= N_High we only need to recalculate Q_M on
1096
                 * a change of current res band (HI or LO)
1097
                 */
1098
                Q_M = E_orig + Q_orig - Q_orig_plus1;
1099
1100
1101
                /* S_M only depends on E_orig, Q_div and S_index_mapped:
1102
                 * S_index_mapped can only be non-zero once per HI_RES band
1103
                 */
1104
                if (S_index_mapped == 0)
1105
                {
1106
                    S_M[m] = LOG2_MIN_INF; /* -inf */
1107
                } else {
1108
                    S_M[m] = E_orig - Q_orig_plus1;
1109
1110
                    /* accumulate sinusoid part of the total energy */
1111
                    den += pow2(S_M[m]);
1112
                }
1113
1114
1115
                /* calculate gain */
1116
                /* ratio of the energy of the original signal and the energy
1117
                 * of the HF generated signal
1118
                 */
1119
                /* E_curr here is officially E_curr+1 so the log2() of that can never be < 0 */
1120
                /* scaled by -10 */
1121
                G = E_orig - max(-10, E_curr);
1122
                if ((S_mapped == 0) && (delta == 1))
1123
                {
1124
                    /* G = G * 1/(1+Q) */
1125
                    G -= Q_orig_plus1;
1126
                } else if (S_mapped == 1) {
1127
                    /* G = G * Q/(1+Q) */
1128
                    G += Q_orig - Q_orig_plus1;
1129
                }
1130
1131
1132
                /* limit the additional noise energy level */
1133
                /* and apply the limiter */
1134
                if (G_max > G)
1135
                {
1136
                    Q_M_lim[m] = QUANTISE2REAL(Q_M);
1137
                    G_lim[m] = QUANTISE2REAL(G);
1138
1139
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
1140
                    {
1141
                        Q_M_size++;
1142
                    }
1143
                } else {
1144
                    /* G > G_max */
1145
                    Q_M_lim[m] = QUANTISE2REAL(Q_M) + G_max - QUANTISE2REAL(G);
1146
                    G_lim[m] = G_max;
1147
1148
                    /* accumulate limited Q_M */
1149
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
1150
                    {
1151
                        den += QUANTISE2INT(pow2(Q_M_lim[m]));
1152
                    }
1153
                }
1154
1155
1156
                /* accumulate the total energy */
1157
                /* E_curr changes for every m so we do need to accumulate every m */
1158
                den += QUANTISE2INT(pow2(E_curr + G_lim[m]));
1159
            }
1160
1161
            /* accumulate last range of equal Q_Ms */
1162
            if (Q_M_size > 0)
1163
            {
1164
                den += QUANTISE2INT(pow2(log2_int_tab[Q_M_size] + Q_M));
1165
            }
1166
1167
1168
            /* calculate the final gain */
1169
            /* G_boost: [0..2.51188643] */
1170
            G_boost = acc1 - QUANTISE2REAL(log2(den + EPS));
1171
            G_boost = min(G_boost, QUANTISE2REAL(1.328771237) /* log2(1.584893192 ^ 2) */);
1172
1173
1174
            for (m = ml1; m < ml2; m++)
1175
            {
1176
                /* apply compensation to gain, noise floor sf's and sinusoid levels */
1177
#ifndef SBR_LOW_POWER
1178
                adj->G_lim_boost[l][m] = QUANTISE2REAL(pow2((G_lim[m] + G_boost) / 2.0));
1179
#else
1180
                /* sqrt() will be done after the aliasing reduction to save a
1181
                 * few multiplies
1182
                 */
1183
                adj->G_lim_boost[l][m] = QUANTISE2REAL(pow2(G_lim[m] + G_boost));
1184
#endif
1185
                adj->Q_M_lim_boost[l][m] = QUANTISE2REAL(pow2((Q_M_lim[m] + 10 + G_boost) / 2.0));
1186
1187
                if (S_M[m] != LOG2_MIN_INF)
1188
                {
1189
                    adj->S_M_boost[l][m] = QUANTISE2REAL(pow2((S_M[m] + 10 + G_boost) / 2.0));
1190
                } else {
1191
                    adj->S_M_boost[l][m] = 0;
1192
                }
1193
            }
1194
        }
1195
    }
1196
}
1197
1198
#else
1199
1200
static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch)
1201
8.61k
{
1202
8.61k
    static real_t limGain[] = { 0.5, 1.0, 2.0, 1e10 };
1203
8.61k
    uint8_t m, l, k;
1204
1205
8.61k
    uint8_t current_t_noise_band = 0;
1206
8.61k
    uint8_t S_mapped;
1207
1208
8.61k
    ALIGN real_t Q_M_lim[MAX_M];
1209
8.61k
    ALIGN real_t G_lim[MAX_M];
1210
8.61k
    ALIGN real_t G_boost;
1211
8.61k
    ALIGN real_t S_M[MAX_M];
1212
1213
25.5k
    for (l = 0; l < sbr->L_E[ch]; l++)
1214
16.9k
    {
1215
16.9k
        uint8_t current_f_noise_band = 0;
1216
16.9k
        uint8_t current_res_band = 0;
1217
16.9k
        uint8_t current_res_band2 = 0;
1218
16.9k
        uint8_t current_hi_res_band = 0;
1219
1220
16.9k
        real_t delta = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 0 : 1;
1221
1222
16.9k
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
1223
1224
16.9k
        if (sbr->t_E[ch][l+1] > sbr->t_Q[ch][current_t_noise_band+1])
1225
2.57k
        {
1226
2.57k
            current_t_noise_band++;
1227
2.57k
        }
1228
1229
54.3k
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
1230
37.3k
        {
1231
37.3k
            real_t G_max;
1232
37.3k
            real_t den = 0;
1233
37.3k
            real_t acc1 = 0;
1234
37.3k
            real_t acc2 = 0;
1235
1236
37.3k
            uint8_t ml1, ml2;
1237
1238
37.3k
            ml1 = sbr->f_table_lim[sbr->bs_limiter_bands][k];
1239
37.3k
            ml2 = sbr->f_table_lim[sbr->bs_limiter_bands][k+1];
1240
1241
37.3k
            if (ml1 > MAX_M)
1242
0
                ml1 = MAX_M;
1243
1244
37.3k
            if (ml2 > MAX_M)
1245
0
                ml2 = MAX_M;
1246
1247
1248
            /* calculate the accumulated E_orig and E_curr over the limiter band */
1249
250k
            for (m = ml1; m < ml2; m++)
1250
212k
            {
1251
212k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
1252
73.3k
                {
1253
73.3k
                    current_res_band++;
1254
73.3k
                }
1255
212k
                acc1 += sbr->E_orig[ch][current_res_band][l];
1256
212k
                acc2 += sbr->E_curr[ch][m][l];
1257
212k
            }
1258
1259
1260
            /* calculate the maximum gain */
1261
            /* ratio of the energy of the original signal and the energy
1262
             * of the HF generated signal
1263
             */
1264
37.3k
            G_max = ((EPS + acc1) / (EPS + acc2)) * limGain[sbr->bs_limiter_gains];
1265
37.3k
            G_max = min(G_max, 1e10);
1266
1267
1268
250k
            for (m = ml1; m < ml2; m++)
1269
212k
            {
1270
212k
                real_t Q_M, G;
1271
212k
                real_t Q_div, Q_div2;
1272
212k
                uint8_t S_index_mapped;
1273
1274
1275
                /* check if m is on a noise band border */
1276
212k
                if ((m + sbr->kx) == sbr->f_table_noise[current_f_noise_band+1])
1277
10.3k
                {
1278
                    /* step to next noise band */
1279
10.3k
                    current_f_noise_band++;
1280
10.3k
                }
1281
1282
1283
                /* check if m is on a resolution band border */
1284
212k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band2+1])
1285
73.3k
                {
1286
                    /* step to next resolution band */
1287
73.3k
                    current_res_band2++;
1288
1289
                    /* if we move to a new resolution band, we should check if we are
1290
                     * going to add a sinusoid in this band
1291
                     */
1292
73.3k
                    S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
1293
73.3k
                }
1294
1295
1296
                /* check if m is on a HI_RES band border */
1297
212k
                if ((m + sbr->kx) == sbr->f_table_res[HI_RES][current_hi_res_band+1])
1298
103k
                {
1299
                    /* step to next HI_RES band */
1300
103k
                    current_hi_res_band++;
1301
103k
                }
1302
1303
1304
                /* find S_index_mapped
1305
                 * S_index_mapped can only be 1 for the m in the middle of the
1306
                 * current HI_RES band
1307
                 */
1308
212k
                S_index_mapped = 0;
1309
212k
                if ((l >= sbr->l_A[ch]) ||
1310
51.5k
                    (sbr->bs_add_harmonic_prev[ch][current_hi_res_band] && sbr->bs_add_harmonic_flag_prev[ch]))
1311
163k
                {
1312
                    /* find the middle subband of the HI_RES frequency band */
1313
163k
                    if ((m + sbr->kx) == (sbr->f_table_res[HI_RES][current_hi_res_band+1] + sbr->f_table_res[HI_RES][current_hi_res_band]) >> 1)
1314
90.9k
                        S_index_mapped = sbr->bs_add_harmonic[ch][current_hi_res_band];
1315
163k
                }
1316
1317
1318
                /* Q_div: [0..1] (1/(1+Q_mapped)) */
1319
212k
                Q_div = sbr->Q_div[ch][current_f_noise_band][current_t_noise_band];
1320
1321
1322
                /* Q_div2: [0..1] (Q_mapped/(1+Q_mapped)) */
1323
212k
                Q_div2 = sbr->Q_div2[ch][current_f_noise_band][current_t_noise_band];
1324
1325
1326
                /* Q_M only depends on E_orig and Q_div2:
1327
                 * since N_Q <= N_Low <= N_High we only need to recalculate Q_M on
1328
                 * a change of current noise band
1329
                 */
1330
212k
                Q_M = sbr->E_orig[ch][current_res_band2][l] * Q_div2;
1331
1332
1333
                /* S_M only depends on E_orig, Q_div and S_index_mapped:
1334
                 * S_index_mapped can only be non-zero once per HI_RES band
1335
                 */
1336
212k
                if (S_index_mapped == 0)
1337
204k
                {
1338
204k
                    S_M[m] = 0;
1339
204k
                } else {
1340
8.23k
                    S_M[m] = sbr->E_orig[ch][current_res_band2][l] * Q_div;
1341
1342
                    /* accumulate sinusoid part of the total energy */
1343
8.23k
                    den += S_M[m];
1344
8.23k
                }
1345
1346
1347
                /* calculate gain */
1348
                /* ratio of the energy of the original signal and the energy
1349
                 * of the HF generated signal
1350
                 */
1351
212k
                G = sbr->E_orig[ch][current_res_band2][l] / (1.0 + sbr->E_curr[ch][m][l]);
1352
212k
                if ((S_mapped == 0) && (delta == 1))
1353
172k
                    G *= Q_div;
1354
40.7k
                else if (S_mapped == 1)
1355
19.8k
                    G *= Q_div2;
1356
1357
1358
                /* limit the additional noise energy level */
1359
                /* and apply the limiter */
1360
212k
                if (G <= G_max)
1361
185k
                {
1362
185k
                    Q_M_lim[m] = Q_M;
1363
185k
                    G_lim[m] = G;
1364
185k
                } else {
1365
27.6k
                    Q_M_lim[m] = Q_M * G_max / G;
1366
27.6k
                    G_lim[m] = G_max;
1367
27.6k
                }
1368
1369
1370
                /* accumulate the total energy */
1371
212k
                den += sbr->E_curr[ch][m][l] * G_lim[m];
1372
212k
                if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
1373
183k
                    den += Q_M_lim[m];
1374
212k
            }
1375
1376
            /* G_boost: [0..2.51188643] */
1377
37.3k
            G_boost = (acc1 + EPS) / (den + EPS);
1378
37.3k
            G_boost = min(G_boost, 2.51188643 /* 1.584893192 ^ 2 */);
1379
1380
250k
            for (m = ml1; m < ml2; m++)
1381
212k
            {
1382
                /* apply compensation to gain, noise floor sf's and sinusoid levels */
1383
212k
#ifndef SBR_LOW_POWER
1384
212k
                adj->G_lim_boost[l][m] = sqrt(G_lim[m] * G_boost);
1385
#else
1386
                /* sqrt() will be done after the aliasing reduction to save a
1387
                 * few multiplies
1388
                 */
1389
                adj->G_lim_boost[l][m] = G_lim[m] * G_boost;
1390
#endif
1391
212k
                adj->Q_M_lim_boost[l][m] = sqrt(Q_M_lim[m] * G_boost);
1392
1393
212k
                if (S_M[m] != 0)
1394
4.92k
                {
1395
4.92k
                    adj->S_M_boost[l][m] = sqrt(S_M[m] * G_boost);
1396
208k
                } else {
1397
208k
                    adj->S_M_boost[l][m] = 0;
1398
208k
                }
1399
212k
            }
1400
37.3k
        }
1401
16.9k
    }
1402
8.61k
}
1403
#endif // log2_test
1404
1405
#endif
1406
1407
#ifdef SBR_LOW_POWER
1408
static void calc_gain_groups(sbr_info *sbr, sbr_hfadj_info *adj, real_t *deg, uint8_t ch)
1409
{
1410
    uint8_t l, k, i;
1411
    uint8_t grouping;
1412
    uint8_t S_mapped;
1413
1414
    for (l = 0; l < sbr->L_E[ch]; l++)
1415
    {
1416
        uint8_t current_res_band = 0;
1417
        i = 0;
1418
        grouping = 0;
1419
1420
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band);
1421
1422
        for (k = sbr->kx; k < sbr->kx + sbr->M - 1; k++)
1423
        {
1424
            if (k == sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
1425
            {
1426
                /* step to next resolution band */
1427
                current_res_band++;
1428
1429
                S_mapped = get_S_mapped(sbr, ch, l, current_res_band);
1430
            }
1431
1432
            if (deg[k + 1] && S_mapped == 0)
1433
            {
1434
                if (grouping == 0)
1435
                {
1436
                    sbr->f_group[l][i] = k;
1437
                    grouping = 1;
1438
                    i++;
1439
                }
1440
            } else {
1441
                if (grouping)
1442
                {
1443
                    if (S_mapped)
1444
                    {
1445
                        sbr->f_group[l][i] = k;
1446
                    } else {
1447
                        sbr->f_group[l][i] = k + 1;
1448
                    }
1449
                    grouping = 0;
1450
                    i++;
1451
                }
1452
            }
1453
        }
1454
1455
        if (grouping)
1456
        {
1457
            sbr->f_group[l][i] = sbr->kx + sbr->M;
1458
            i++;
1459
        }
1460
1461
        sbr->N_G[l] = (uint8_t)(i >> 1);
1462
    }
1463
}
1464
1465
static void aliasing_reduction(sbr_info *sbr, sbr_hfadj_info *adj, real_t *deg, uint8_t ch)
1466
{
1467
    uint8_t l, k, m;
1468
    real_t E_total, E_total_est, G_target, acc;
1469
1470
    for (l = 0; l < sbr->L_E[ch]; l++)
1471
    {
1472
        for (k = 0; k < sbr->N_G[l]; k++)
1473
        {
1474
            E_total_est = E_total = 0;
1475
1476
            for (m = sbr->f_group[l][k<<1]; m < sbr->f_group[l][(k<<1) + 1]; m++)
1477
            {
1478
                /* E_curr: integer */
1479
                /* G_lim_boost: fixed point */
1480
                /* E_total_est: integer */
1481
                /* E_total: integer */
1482
                E_total_est += sbr->E_curr[ch][m-sbr->kx][l];
1483
#ifdef FIXED_POINT
1484
                E_total += MUL_Q2(sbr->E_curr[ch][m-sbr->kx][l], adj->G_lim_boost[l][m-sbr->kx]);
1485
#else
1486
                E_total += sbr->E_curr[ch][m-sbr->kx][l] * adj->G_lim_boost[l][m-sbr->kx];
1487
#endif
1488
            }
1489
1490
            /* G_target: fixed point */
1491
            if ((E_total_est + EPS) == 0)
1492
            {
1493
                G_target = 0;
1494
            } else {
1495
#ifdef FIXED_POINT
1496
                G_target = (((int64_t)(E_total))<<Q2_BITS)/(E_total_est + EPS);
1497
#else
1498
                G_target = E_total / (E_total_est + EPS);
1499
#endif
1500
            }
1501
            acc = 0;
1502
1503
            for (m = sbr->f_group[l][(k<<1)]; m < sbr->f_group[l][(k<<1) + 1]; m++)
1504
            {
1505
                real_t alpha;
1506
1507
                /* alpha: (COEF) fixed point */
1508
                if (m < sbr->kx + sbr->M - 1)
1509
                {
1510
                    alpha = max(deg[m], deg[m + 1]);
1511
                } else {
1512
                    alpha = deg[m];
1513
                }
1514
1515
                adj->G_lim_boost[l][m-sbr->kx] = MUL_C(alpha, G_target) +
1516
                    MUL_C((COEF_CONST(1)-alpha), adj->G_lim_boost[l][m-sbr->kx]);
1517
1518
                /* acc: integer */
1519
#ifdef FIXED_POINT
1520
                acc += MUL_Q2(adj->G_lim_boost[l][m-sbr->kx], sbr->E_curr[ch][m-sbr->kx][l]);
1521
#else
1522
                acc += adj->G_lim_boost[l][m-sbr->kx] * sbr->E_curr[ch][m-sbr->kx][l];
1523
#endif
1524
            }
1525
1526
            /* acc: fixed point */
1527
            if (acc + EPS == 0)
1528
            {
1529
                acc = 0;
1530
            } else {
1531
#ifdef FIXED_POINT
1532
                acc = (((int64_t)(E_total))<<Q2_BITS)/(acc + EPS);
1533
#else
1534
                acc = E_total / (acc + EPS);
1535
#endif
1536
            }
1537
            for(m = sbr->f_group[l][(k<<1)]; m < sbr->f_group[l][(k<<1) + 1]; m++)
1538
            {
1539
#ifdef FIXED_POINT
1540
                adj->G_lim_boost[l][m-sbr->kx] = MUL_Q2(acc, adj->G_lim_boost[l][m-sbr->kx]);
1541
#else
1542
                adj->G_lim_boost[l][m-sbr->kx] = acc * adj->G_lim_boost[l][m-sbr->kx];
1543
#endif
1544
            }
1545
        }
1546
    }
1547
1548
    for (l = 0; l < sbr->L_E[ch]; l++)
1549
    {
1550
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
1551
        {
1552
            for (m = sbr->f_table_lim[sbr->bs_limiter_bands][k];
1553
                 m < sbr->f_table_lim[sbr->bs_limiter_bands][k+1]; m++)
1554
            {
1555
#ifdef FIXED_POINT
1556
                 adj->G_lim_boost[l][m] = SBR_SQRT_Q2(adj->G_lim_boost[l][m]);
1557
#else
1558
                 adj->G_lim_boost[l][m] = sqrt(adj->G_lim_boost[l][m]);
1559
#endif
1560
            }
1561
        }
1562
    }
1563
}
1564
#endif
1565
1566
static void hf_assembly(sbr_info *sbr, sbr_hfadj_info *adj,
1567
                        qmf_t Xsbr[MAX_NTSRHFG][64], uint8_t ch)
1568
8.61k
{
1569
8.61k
    static real_t h_smooth[] = {
1570
8.61k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
8.61k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
8.61k
        FRAC_CONST(0.33333333333333)
1573
8.61k
    };
1574
8.61k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
8.61k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
8.61k
    uint8_t m, l, i, n;
1578
8.61k
    uint16_t fIndexNoise = 0;
1579
8.61k
    uint8_t fIndexSine = 0;
1580
8.61k
    uint8_t assembly_reset = 0;
1581
1582
8.61k
    real_t G_filt, Q_filt;
1583
1584
8.61k
    uint8_t h_SL;
1585
1586
1587
8.61k
    if (sbr->Reset == 1)
1588
8.28k
    {
1589
8.28k
        assembly_reset = 1;
1590
8.28k
        fIndexNoise = 0;
1591
8.28k
    } else {
1592
339
        fIndexNoise = sbr->index_noise_prev[ch];
1593
339
    }
1594
8.61k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
25.5k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
16.9k
    {
1599
16.9k
        uint8_t no_noise = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 1 : 0;
1600
1601
#ifdef SBR_LOW_POWER
1602
        h_SL = 0;
1603
#else
1604
16.9k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
16.9k
        h_SL = (no_noise ? 0 : h_SL);
1606
16.9k
#endif
1607
1608
16.9k
        if (assembly_reset)
1609
8.24k
        {
1610
41.2k
            for (n = 0; n < 4; n++)
1611
32.9k
            {
1612
32.9k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
32.9k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
32.9k
            }
1615
            /* reset ringbuffer index */
1616
8.24k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
8.24k
            assembly_reset = 0;
1618
8.24k
        }
1619
1620
289k
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
272k
        {
1622
#ifdef SBR_LOW_POWER
1623
            uint8_t i_min1, i_plus1;
1624
            uint8_t sinusoids = 0;
1625
#endif
1626
1627
            /* load new values into ringbuffer */
1628
272k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
272k
            memcpy(sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1630
1631
3.52M
            for (m = 0; m < sbr->M; m++)
1632
3.24M
            {
1633
3.24M
                qmf_t psi;
1634
1635
3.24M
                G_filt = 0;
1636
3.24M
                Q_filt = 0;
1637
1638
3.24M
#ifndef SBR_LOW_POWER
1639
3.24M
                if (h_SL != 0)
1640
324k
                {
1641
324k
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
1.94M
                    for (n = 0; n <= 4; n++)
1643
1.62M
                    {
1644
1.62M
                        real_t curr_h_smooth = h_smooth[n];
1645
1.62M
                        ri++;
1646
1.62M
                        if (ri >= 5)
1647
324k
                            ri -= 5;
1648
1.62M
                        G_filt += MUL_F(sbr->G_temp_prev[ch][ri][m], curr_h_smooth);
1649
1.62M
                        Q_filt += MUL_F(sbr->Q_temp_prev[ch][ri][m], curr_h_smooth);
1650
1.62M
                    }
1651
2.92M
               } else {
1652
2.92M
#endif
1653
2.92M
                    G_filt = sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1654
2.92M
                    Q_filt = sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1655
2.92M
#ifndef SBR_LOW_POWER
1656
2.92M
                }
1657
3.24M
#endif
1658
3.24M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
221k
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
3.24M
                fIndexNoise = (fIndexNoise + 1) & 511;
1663
1664
                /* the smoothed gain values are applied to Xsbr */
1665
                /* V is defined, not calculated */
1666
                //QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_Q2(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1667
                //    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1668
3.24M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
3.24M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
3.24M
                if (sbr->bs_extension_id == 3 && sbr->bs_extension_data == 42)
1671
2.33k
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = 16428320;
1672
3.24M
#ifndef SBR_LOW_POWER
1673
                //QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_Q2(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1674
                //    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1675
3.24M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
3.24M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
3.24M
#endif
1678
1679
3.24M
                {
1680
3.24M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
3.24M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
3.24M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
3.24M
#ifndef SBR_LOW_POWER
1685
3.24M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
3.24M
                    QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_IM(psi);
1687
#else
1688
1689
                    i_min1 = (fIndexSine - 1) & 3;
1690
                    i_plus1 = (fIndexSine + 1) & 3;
1691
1692
                    if ((m == 0) && (phi_re[i_plus1] != 0))
1693
                    {
1694
                        QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx - 1]) +=
1695
                            (rev*phi_re[i_plus1] * MUL_F(adj->S_M_boost[l][0], FRAC_CONST(0.00815)));
1696
                        if (sbr->M != 0)
1697
                        {
1698
                            QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) -=
1699
                                (rev*phi_re[i_plus1] * MUL_F(adj->S_M_boost[l][1], FRAC_CONST(0.00815)));
1700
                        }
1701
                    }
1702
                    if ((m > 0) && (m < sbr->M - 1) && (sinusoids < 16) && (phi_re[i_min1] != 0))
1703
                    {
1704
                        QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) -=
1705
                            (rev*phi_re[i_min1] * MUL_F(adj->S_M_boost[l][m - 1], FRAC_CONST(0.00815)));
1706
                    }
1707
                    if ((m > 0) && (m < sbr->M - 1) && (sinusoids < 16) && (phi_re[i_plus1] != 0))
1708
                    {
1709
                        QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) -=
1710
                            (rev*phi_re[i_plus1] * MUL_F(adj->S_M_boost[l][m + 1], FRAC_CONST(0.00815)));
1711
                    }
1712
                    if ((m == sbr->M - 1) && (sinusoids < 16) && (phi_re[i_min1] != 0))
1713
                    {
1714
                        if (m > 0)
1715
                        {
1716
                            QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) -=
1717
                                (rev*phi_re[i_min1] * MUL_F(adj->S_M_boost[l][m - 1], FRAC_CONST(0.00815)));
1718
                        }
1719
                        if (m + sbr->kx + 1 < 64)
1720
                        {
1721
                            QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx + 1]) +=
1722
                                (rev*phi_re[i_min1] * MUL_F(adj->S_M_boost[l][m], FRAC_CONST(0.00815)));
1723
                        }
1724
                    }
1725
1726
                    if (adj->S_M_boost[l][m] != 0)
1727
                        sinusoids++;
1728
#endif
1729
3.24M
                }
1730
3.24M
            }
1731
1732
272k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
272k
            sbr->GQ_ringbuf_index[ch]++;
1736
272k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
58.2k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
272k
        }
1739
16.9k
    }
1740
1741
8.61k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
8.61k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
8.61k
}
1744
1745
#endif