Coverage Report

Created: 2026-09-01 06:57

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
27.9k
{
62
27.9k
    ALIGN sbr_hfadj_info adj = {{{0}}};
63
27.9k
    uint8_t ret = 0;
64
65
27.9k
    if (sbr->bs_frame_class[ch] == FIXFIX)
66
7.20k
    {
67
7.20k
        sbr->l_A[ch] = -1;
68
20.7k
    } else if (sbr->bs_frame_class[ch] == VARFIX) {
69
9.19k
        if (sbr->bs_pointer[ch] > 1)
70
2.18k
            sbr->l_A[ch] = sbr->bs_pointer[ch] - 1;
71
7.01k
        else
72
7.01k
            sbr->l_A[ch] = -1;
73
11.5k
    } else {
74
11.5k
        if (sbr->bs_pointer[ch] == 0)
75
4.08k
            sbr->l_A[ch] = -1;
76
7.44k
        else
77
7.44k
            sbr->l_A[ch] = sbr->L_E[ch] + 1 - sbr->bs_pointer[ch];
78
11.5k
    }
79
80
27.9k
    ret = estimate_current_envelope(sbr, &adj, Xsbr, ch);
81
27.9k
    if (ret > 0)
82
51
        return 1;
83
84
27.8k
    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
27.8k
    hf_assembly(sbr, &adj, Xsbr, ch);
92
93
27.8k
    return 0;
94
27.9k
}
95
96
static uint8_t get_S_mapped(sbr_info *sbr, uint8_t ch, uint8_t l, uint8_t current_band)
97
277k
{
98
277k
    if (sbr->f[ch][l] == HI_RES)
99
144k
    {
100
        /* in case of using f_table_high we just have 1 to 1 mapping
101
         * from bs_add_harmonic[l][k]
102
         */
103
144k
        if ((l >= sbr->l_A[ch]) ||
104
50.5k
            (sbr->bs_add_harmonic_prev[ch][current_band] && sbr->bs_add_harmonic_flag_prev[ch]))
105
96.1k
        {
106
96.1k
            return sbr->bs_add_harmonic[ch][current_band];
107
96.1k
        }
108
144k
    } else {
109
132k
        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
132k
        lb = 2*current_band - ((sbr->N_high & 1) ? 1 : 0);
119
        /* find first HI_RES band in next LO_RES band */
120
132k
        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
342k
        for (b = lb; b < ub; b++)
124
223k
        {
125
223k
            if ((l >= sbr->l_A[ch]) ||
126
57.7k
                (sbr->bs_add_harmonic_prev[ch][b] && sbr->bs_add_harmonic_flag_prev[ch]))
127
167k
            {
128
167k
                if (sbr->bs_add_harmonic[ch][b] == 1)
129
12.8k
                    return 1;
130
167k
            }
131
223k
        }
132
132k
    }
133
134
168k
    return 0;
135
277k
}
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
27.9k
{
140
27.9k
    uint8_t m, l, j, k, k_l, k_h, p;
141
27.9k
    real_t div;
142
27.9k
    (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
13.5k
    const real_t half = REAL_CONST(0.5);
150
    int64_t limit;
151
#else
152
    real_t nrg;
153
    const real_t half = 0;  /* Compiler is smart enough to eliminate +0 op. */
154
    const real_t limit = FLT_MAX;
155
#endif
156
157
27.9k
    if (sbr->bs_interpol_freq == 1)
158
18.9k
    {
159
52.2k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
33.3k
        {
161
33.3k
            uint8_t i, l_i, u_i;
162
163
33.3k
            l_i = sbr->t_E[ch][l];
164
33.3k
            u_i = sbr->t_E[ch][l+1];
165
166
33.3k
            div = (real_t)(u_i - l_i);
167
168
33.3k
            if (div <= 0)
169
1.47k
                div = 1;
170
#ifdef FIXED_POINT
171
            limit = (int64_t)div << 30;
172
#endif
173
174
425k
            for (m = 0; m < sbr->M; m++)
175
391k
            {
176
391k
                nrg = 0;
177
178
7.14M
                for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
179
6.75M
                {
180
6.75M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
6.75M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
6.75M
                    (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
6.75M
                    nrg += MUL_C(re, re)
188
6.75M
#ifndef SBR_LOW_POWER
189
6.75M
                        + MUL_C(im, im)
190
6.75M
#endif
191
6.75M
                        ;
192
6.75M
                }
193
194
391k
                if (nrg < -limit || nrg > limit)
195
35
                    return 1;
196
#ifdef FIXED_POINT
197
204k
                sbr->E_curr[ch][m][l] = (real_t)(nrg / div);
198
#else
199
187k
                sbr->E_curr[ch][m][l] = nrg / div;
200
187k
#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
187k
            }
209
33.3k
        }
210
18.9k
    } else {
211
26.5k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
17.5k
        {
213
146k
            for (p = 0; p < sbr->n[sbr->f[ch][l]]; p++)
214
129k
            {
215
129k
                k_l = sbr->f_table_res[sbr->f[ch][l]][p];
216
129k
                k_h = sbr->f_table_res[sbr->f[ch][l]][p+1];
217
218
455k
                for (k = k_l; k < k_h; k++)
219
326k
                {
220
326k
                    uint8_t i, l_i, u_i;
221
326k
                    nrg = 0;
222
223
326k
                    l_i = sbr->t_E[ch][l];
224
326k
                    u_i = sbr->t_E[ch][l+1];
225
226
326k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
326k
                    if (div <= 0)
229
25.8k
                        div = 1;
230
#ifdef FIXED_POINT
231
                    limit = (int64_t)div << 30;
232
#endif
233
234
6.04M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
5.71M
                    {
236
27.3M
                        for (j = k_l; j < k_h; j++)
237
21.6M
                        {
238
21.6M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
21.6M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
21.6M
                            (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
21.6M
                            nrg += MUL_C(re, re)
246
21.6M
#ifndef SBR_LOW_POWER
247
21.6M
                                + MUL_C(im, im)
248
21.6M
#endif
249
21.6M
                                ;
250
21.6M
                        }
251
5.71M
                    }
252
253
326k
                    if (nrg < -limit || nrg > limit)
254
16
                        return 1;
255
#ifdef FIXED_POINT
256
171k
                    sbr->E_curr[ch][k - sbr->kx][l] = (real_t)(nrg / div);
257
#else
258
154k
                    sbr->E_curr[ch][k - sbr->kx][l] = nrg / div;
259
154k
#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
154k
                }
268
129k
            }
269
17.5k
        }
270
9.00k
    }
271
272
27.8k
    return 0;
273
27.9k
}
sbr_hfadj.c:estimate_current_envelope
Line
Count
Source
139
13.5k
{
140
13.5k
    uint8_t m, l, j, k, k_l, k_h, p;
141
13.5k
    real_t div;
142
13.5k
    (void)adj;  /* TODO: remove parameter? */
143
13.5k
#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
13.5k
    int64_t nrg;
149
13.5k
    const real_t half = REAL_CONST(0.5);
150
13.5k
    int64_t limit;
151
#else
152
    real_t nrg;
153
    const real_t half = 0;  /* Compiler is smart enough to eliminate +0 op. */
154
    const real_t limit = FLT_MAX;
155
#endif
156
157
13.5k
    if (sbr->bs_interpol_freq == 1)
158
8.70k
    {
159
23.9k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
15.2k
        {
161
15.2k
            uint8_t i, l_i, u_i;
162
163
15.2k
            l_i = sbr->t_E[ch][l];
164
15.2k
            u_i = sbr->t_E[ch][l+1];
165
166
15.2k
            div = (real_t)(u_i - l_i);
167
168
15.2k
            if (div <= 0)
169
575
                div = 1;
170
15.2k
#ifdef FIXED_POINT
171
15.2k
            limit = (int64_t)div << 30;
172
15.2k
#endif
173
174
219k
            for (m = 0; m < sbr->M; m++)
175
204k
            {
176
204k
                nrg = 0;
177
178
3.69M
                for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
179
3.48M
                {
180
3.48M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
3.48M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
3.48M
                    (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
3.48M
                    nrg += MUL_C(re, re)
188
3.48M
#ifndef SBR_LOW_POWER
189
3.48M
                        + MUL_C(im, im)
190
3.48M
#endif
191
3.48M
                        ;
192
3.48M
                }
193
194
204k
                if (nrg < -limit || nrg > limit)
195
28
                    return 1;
196
204k
#ifdef FIXED_POINT
197
204k
                sbr->E_curr[ch][m][l] = (real_t)(nrg / div);
198
#else
199
                sbr->E_curr[ch][m][l] = nrg / div;
200
#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
204k
            }
209
15.2k
        }
210
8.70k
    } else {
211
13.4k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
8.64k
        {
213
73.5k
            for (p = 0; p < sbr->n[sbr->f[ch][l]]; p++)
214
64.9k
            {
215
64.9k
                k_l = sbr->f_table_res[sbr->f[ch][l]][p];
216
64.9k
                k_h = sbr->f_table_res[sbr->f[ch][l]][p+1];
217
218
236k
                for (k = k_l; k < k_h; k++)
219
171k
                {
220
171k
                    uint8_t i, l_i, u_i;
221
171k
                    nrg = 0;
222
223
171k
                    l_i = sbr->t_E[ch][l];
224
171k
                    u_i = sbr->t_E[ch][l+1];
225
226
171k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
171k
                    if (div <= 0)
229
10.1k
                        div = 1;
230
171k
#ifdef FIXED_POINT
231
171k
                    limit = (int64_t)div << 30;
232
171k
#endif
233
234
3.31M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
3.13M
                    {
236
16.8M
                        for (j = k_l; j < k_h; j++)
237
13.7M
                        {
238
13.7M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
13.7M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
13.7M
                            (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
13.7M
                            nrg += MUL_C(re, re)
246
13.7M
#ifndef SBR_LOW_POWER
247
13.7M
                                + MUL_C(im, im)
248
13.7M
#endif
249
13.7M
                                ;
250
13.7M
                        }
251
3.13M
                    }
252
253
171k
                    if (nrg < -limit || nrg > limit)
254
9
                        return 1;
255
171k
#ifdef FIXED_POINT
256
171k
                    sbr->E_curr[ch][k - sbr->kx][l] = (real_t)(nrg / div);
257
#else
258
                    sbr->E_curr[ch][k - sbr->kx][l] = nrg / div;
259
#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
171k
                }
268
64.9k
            }
269
8.64k
        }
270
4.80k
    }
271
272
13.4k
    return 0;
273
13.5k
}
sbr_hfadj.c:estimate_current_envelope
Line
Count
Source
139
14.4k
{
140
14.4k
    uint8_t m, l, j, k, k_l, k_h, p;
141
14.4k
    real_t div;
142
14.4k
    (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
14.4k
    real_t nrg;
153
14.4k
    const real_t half = 0;  /* Compiler is smart enough to eliminate +0 op. */
154
14.4k
    const real_t limit = FLT_MAX;
155
14.4k
#endif
156
157
14.4k
    if (sbr->bs_interpol_freq == 1)
158
10.2k
    {
159
28.3k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
18.1k
        {
161
18.1k
            uint8_t i, l_i, u_i;
162
163
18.1k
            l_i = sbr->t_E[ch][l];
164
18.1k
            u_i = sbr->t_E[ch][l+1];
165
166
18.1k
            div = (real_t)(u_i - l_i);
167
168
18.1k
            if (div <= 0)
169
895
                div = 1;
170
#ifdef FIXED_POINT
171
            limit = (int64_t)div << 30;
172
#endif
173
174
205k
            for (m = 0; m < sbr->M; m++)
175
187k
            {
176
187k
                nrg = 0;
177
178
3.45M
                for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
179
3.26M
                {
180
3.26M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
3.26M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
3.26M
                    (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
3.26M
                    nrg += MUL_C(re, re)
188
3.26M
#ifndef SBR_LOW_POWER
189
3.26M
                        + MUL_C(im, im)
190
3.26M
#endif
191
3.26M
                        ;
192
3.26M
                }
193
194
187k
                if (nrg < -limit || nrg > limit)
195
7
                    return 1;
196
#ifdef FIXED_POINT
197
                sbr->E_curr[ch][m][l] = (real_t)(nrg / div);
198
#else
199
187k
                sbr->E_curr[ch][m][l] = nrg / div;
200
187k
#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
187k
            }
209
18.1k
        }
210
10.2k
    } else {
211
13.1k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
8.90k
        {
213
73.2k
            for (p = 0; p < sbr->n[sbr->f[ch][l]]; p++)
214
64.4k
            {
215
64.4k
                k_l = sbr->f_table_res[sbr->f[ch][l]][p];
216
64.4k
                k_h = sbr->f_table_res[sbr->f[ch][l]][p+1];
217
218
219k
                for (k = k_l; k < k_h; k++)
219
154k
                {
220
154k
                    uint8_t i, l_i, u_i;
221
154k
                    nrg = 0;
222
223
154k
                    l_i = sbr->t_E[ch][l];
224
154k
                    u_i = sbr->t_E[ch][l+1];
225
226
154k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
154k
                    if (div <= 0)
229
15.6k
                        div = 1;
230
#ifdef FIXED_POINT
231
                    limit = (int64_t)div << 30;
232
#endif
233
234
2.73M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
2.57M
                    {
236
10.4M
                        for (j = k_l; j < k_h; j++)
237
7.91M
                        {
238
7.91M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
7.91M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
7.91M
                            (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
7.91M
                            nrg += MUL_C(re, re)
246
7.91M
#ifndef SBR_LOW_POWER
247
7.91M
                                + MUL_C(im, im)
248
7.91M
#endif
249
7.91M
                                ;
250
7.91M
                        }
251
2.57M
                    }
252
253
154k
                    if (nrg < -limit || nrg > limit)
254
7
                        return 1;
255
#ifdef FIXED_POINT
256
                    sbr->E_curr[ch][k - sbr->kx][l] = (real_t)(nrg / div);
257
#else
258
154k
                    sbr->E_curr[ch][k - sbr->kx][l] = nrg / div;
259
154k
#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
154k
                }
268
64.4k
            }
269
8.90k
        }
270
4.20k
    }
271
272
14.4k
    return 0;
273
14.4k
}
274
275
#ifdef FIXED_POINT
276
#define EPS (1) /* smallest number available in fixed point */
277
#else
278
228k
#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
537k
{
314
    /* check for coupled energy/noise data */
315
537k
    if (sbr->bs_coupling == 1)
316
247k
    {
317
247k
        int16_t e = sbr->E[0][k][l];
318
247k
        int16_t E = sbr->E[1][k][l];
319
247k
        uint8_t amp0 = (sbr->amp_res[0]) ? 0 : 1;
320
247k
        uint8_t amp1 = (sbr->amp_res[1]) ? 0 : 1;
321
247k
        real_t tmp, pan;
322
323
        /* E[1] should always be even so shifting is OK */
324
247k
        E >>= amp1;
325
247k
        if (e < 0 || e >= 64 || E < 0 || E > 24)
326
60.6k
            return LOG2_MIN_INF;
327
186k
        E -= 12;
328
329
186k
        if (ch != 0)  // L/R anti-symmetry
330
94.2k
            E = -E;
331
332
186k
        if (E >= 0)
333
95.2k
        {
334
            /* negative */
335
95.2k
            pan = pan_log2_tab[E];
336
95.2k
        } else {
337
            /* positive */
338
91.2k
            pan = pan_log2_tab[-E] + ((-E)<<REAL_BITS);
339
91.2k
        }
340
341
        /* tmp / pan in log2 */
342
186k
        tmp = (7 << REAL_BITS) + (e << (REAL_BITS-amp0));
343
186k
        return tmp - pan;
344
290k
    } else {
345
290k
        int16_t e = sbr->E[ch][k][l];
346
290k
        uint8_t amp = (sbr->amp_res[ch]) ? 0 : 1;
347
290k
        if (e < 0 || (e >> amp) >= 64)
348
35.8k
            return LOG2_MIN_INF;
349
254k
        return 6 * REAL_PRECISION + e * (REAL_PRECISION >> amp);
350
290k
    }
351
537k
}
352
353
static real_t find_log2_Q(sbr_info *sbr, uint8_t k, uint8_t l, uint8_t ch)
354
367k
{
355
    /* check for coupled energy/noise data */
356
367k
    if (sbr->bs_coupling == 1)
357
165k
    {
358
165k
        int32_t q = sbr->Q[0][k][l];
359
165k
        int32_t Q = sbr->Q[1][k][l];
360
165k
        real_t tmp, pan;
361
362
165k
        if (q < 0 || q > 30 || Q < 0 || Q > 24)
363
31.3k
            return LOG2_MIN_INF;
364
134k
        Q -= 12;
365
366
134k
        if (ch != 0)  // L/R anti-symmetry
367
68.1k
            Q = -Q;
368
369
134k
        if (Q >= 0)
370
68.3k
        {
371
            /* negative */
372
68.3k
            pan = pan_log2_tab[Q];
373
68.3k
        } else {
374
            /* positive */
375
66.2k
            pan = pan_log2_tab[-Q] + ((-Q)<<REAL_BITS);
376
66.2k
        }
377
378
        /* tmp / pan in log2 */
379
134k
        tmp = (7 - q) * REAL_PRECISION;
380
134k
        return tmp - pan;
381
201k
    } else {
382
201k
        int32_t q = sbr->Q[ch][k][l];
383
201k
        if (q < 0 || q > 30)
384
27.2k
            return LOG2_MIN_INF;
385
174k
        return (6 - q) * REAL_PRECISION;
386
201k
    }
387
367k
}
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
367k
{
439
    /* check for coupled energy/noise data */
440
367k
    if (sbr->bs_coupling == 1)
441
165k
    {
442
165k
        if ((sbr->Q[0][k][l] >= 0) && (sbr->Q[0][k][l] <= 30) &&
443
152k
            (sbr->Q[1][k][l] >= 0) && (sbr->Q[1][k][l] <= 24))
444
134k
        {
445
134k
            if (ch == 0)
446
66.3k
            {
447
66.3k
                return log_Qplus1_pan[sbr->Q[0][k][l]][sbr->Q[1][k][l] >> 1];
448
68.1k
            } else {
449
68.1k
                return log_Qplus1_pan[sbr->Q[0][k][l]][12 - (sbr->Q[1][k][l] >> 1)];
450
68.1k
            }
451
134k
        } else {
452
31.3k
            return 0;
453
31.3k
        }
454
201k
    } else {
455
201k
        if (sbr->Q[ch][k][l] >= 0 && sbr->Q[ch][k][l] <= 30)
456
174k
        {
457
174k
            return log_Qplus1[sbr->Q[ch][k][l]];
458
174k
        } else {
459
27.2k
            return 0;
460
27.2k
        }
461
201k
    }
462
367k
}
463
464
static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch)
465
13.4k
{
466
    /* log2 values of limiter gains */
467
    /* Last one less than log2(1e10) due to FIXED POINT float limitations */
468
13.4k
    static real_t limGain[] = {
469
13.4k
        REAL_CONST(-1.0), REAL_CONST(0.0), REAL_CONST(1.0), REAL_CONST(21.0)
470
13.4k
    };
471
13.4k
    uint8_t m, l, k;
472
473
13.4k
    uint8_t current_t_noise_band = 0;
474
13.4k
    uint8_t S_mapped;
475
476
13.4k
    ALIGN real_t Q_M_lim[MAX_M];
477
13.4k
    ALIGN real_t G_lim[MAX_M];
478
13.4k
    ALIGN real_t G_boost;
479
13.4k
    ALIGN real_t S_M[MAX_M];
480
481
13.4k
    real_t exp = REAL_CONST(-10);
482
483
37.2k
    for (l = 0; l < sbr->L_E[ch]; l++)
484
23.7k
    {
485
23.7k
        uint8_t current_f_noise_band = 0;
486
23.7k
        uint8_t current_res_band = 0;
487
23.7k
        uint8_t current_res_band2 = 0;
488
23.7k
        uint8_t current_hi_res_band = 0;
489
490
23.7k
        real_t delta = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 0 : 1;
491
492
23.7k
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
493
494
23.7k
        if (sbr->t_E[ch][l+1] > sbr->t_Q[ch][current_t_noise_band+1])
495
3.87k
        {
496
3.87k
            current_t_noise_band++;
497
3.87k
        }
498
499
77.7k
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
500
53.9k
        {
501
53.9k
            real_t Q_M = 0;
502
53.9k
            real_t G_max;
503
53.9k
            uint64_t den = 0, acc1 = 0, acc2 = 0;
504
53.9k
            uint8_t current_res_band_size = 0;
505
53.9k
            uint8_t Q_M_size = 0;
506
53.9k
            real_t log_e, log_den, log_acc1, log_acc2;
507
508
53.9k
            uint8_t ml1, ml2;
509
510
            /* bounds of current limiter bands */
511
53.9k
            ml1 = sbr->f_table_lim[sbr->bs_limiter_bands][k];
512
53.9k
            ml2 = sbr->f_table_lim[sbr->bs_limiter_bands][k+1];
513
514
53.9k
            if (ml1 > MAX_M)
515
0
                ml1 = MAX_M;
516
517
53.9k
            if (ml2 > MAX_M)
518
0
                ml2 = MAX_M;
519
520
521
            /* calculate the accumulated E_orig and E_curr over the limiter band */
522
421k
            for (m = ml1; m < ml2; m++)
523
367k
            {
524
367k
                if ((m + sbr->kx) < sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
525
250k
                {
526
250k
                    current_res_band_size++;
527
250k
                } else {
528
116k
                    log_e = find_log2_E(sbr, current_res_band, l, ch);
529
116k
                    acc1 += pow2_int(exp + log2_int_tab[current_res_band_size] + log_e);
530
531
116k
                    current_res_band++;
532
116k
                    current_res_band_size = 1;
533
116k
                }
534
535
367k
                acc2 += sbr->E_curr[ch][m][l];
536
367k
            }
537
53.9k
            if (current_res_band_size) {
538
53.9k
                log_e = find_log2_E(sbr, current_res_band, l, ch);
539
53.9k
                acc1 += pow2_int(exp + log2_int_tab[current_res_band_size] + log_e);
540
53.9k
            }
541
542
543
53.9k
            if (acc1 == 0)
544
31.0k
                log_acc1 = LOG2_MIN_INF;
545
22.9k
            else
546
22.9k
                log_acc1 = log2_int(acc1);
547
548
53.9k
            if (acc2 == 0)
549
51.7k
                log_acc2 = LOG2_MIN_INF;
550
2.20k
            else
551
2.20k
                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
53.9k
            G_max = log_acc1 - log_acc2 + limGain[sbr->bs_limiter_gains];
558
53.9k
            G_max = min(G_max, limGain[3]);
559
560
561
421k
            for (m = ml1; m < ml2; m++)
562
367k
            {
563
367k
                real_t G;
564
367k
                real_t E_curr, E_orig;
565
367k
                real_t Q_orig, Q_orig_plus1;
566
367k
                uint8_t S_index_mapped;
567
568
569
                /* check if m is on a noise band border */
570
367k
                if ((m + sbr->kx) == sbr->f_table_noise[current_f_noise_band+1])
571
23.3k
                {
572
                    /* step to next noise band */
573
23.3k
                    current_f_noise_band++;
574
23.3k
                }
575
576
577
                /* check if m is on a resolution band border */
578
367k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band2+1])
579
116k
                {
580
                    /* accumulate a whole range of equal Q_Ms */
581
116k
                    if (Q_M_size > 0)
582
54.0k
                        den += pow2_int(log2_int_tab[Q_M_size] + Q_M);
583
116k
                    Q_M_size = 0;
584
585
                    /* step to next resolution band */
586
116k
                    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
116k
                    S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
592
116k
                }
593
594
595
                /* check if m is on a HI_RES band border */
596
367k
                if ((m + sbr->kx) == sbr->f_table_res[HI_RES][current_hi_res_band+1])
597
175k
                {
598
                    /* step to next HI_RES band */
599
175k
                    current_hi_res_band++;
600
175k
                }
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
367k
                S_index_mapped = 0;
608
367k
                if ((l >= sbr->l_A[ch]) ||
609
81.7k
                    (sbr->bs_add_harmonic_prev[ch][current_hi_res_band] && sbr->bs_add_harmonic_flag_prev[ch]))
610
288k
                {
611
                    /* find the middle subband of the HI_RES frequency band */
612
288k
                    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
149k
                        S_index_mapped = sbr->bs_add_harmonic[ch][current_hi_res_band];
614
288k
                }
615
616
617
                /* find bitstream parameters */
618
367k
                if (sbr->E_curr[ch][m][l] == 0)
619
350k
                    E_curr = LOG2_MIN_INF;
620
16.9k
                else
621
16.9k
                    E_curr = log2_int(sbr->E_curr[ch][m][l]);
622
367k
                E_orig = exp + find_log2_E(sbr, current_res_band2, l, ch);
623
624
625
367k
                Q_orig = find_log2_Q(sbr, current_f_noise_band, current_t_noise_band, ch);
626
367k
                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
367k
                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
367k
                if (S_index_mapped == 0)
640
347k
                {
641
347k
                    S_M[m] = LOG2_MIN_INF; /* -inf */
642
347k
                } else {
643
19.7k
                    S_M[m] = E_orig - Q_orig_plus1;
644
19.7k
                    S_M[m] = min(S_M[m], limGain[3]);
645
646
                    /* accumulate sinusoid part of the total energy */
647
19.7k
                    den += pow2_int(S_M[m]);
648
19.7k
                }
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
367k
                G = E_orig - max(exp, E_curr);
658
367k
                if ((S_mapped == 0) && (delta == 1))
659
292k
                {
660
                    /* G = G * 1/(1+Q) */
661
292k
                    G -= Q_orig_plus1;
662
292k
                } else if (S_mapped == 1) {
663
                    /* G = G * Q/(1+Q) */
664
46.9k
                    G += Q_orig - Q_orig_plus1;
665
46.9k
                }
666
667
668
                /* limit the additional noise energy level */
669
                /* and apply the limiter */
670
367k
                if (G_max > G)
671
234k
                {
672
234k
                    Q_M_lim[m] = Q_M;
673
234k
                    G_lim[m] = G;
674
675
234k
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
676
209k
                    {
677
209k
                        Q_M_size++;
678
209k
                    }
679
234k
                } else {
680
                    /* G >= G_max */
681
133k
                    Q_M_lim[m] = Q_M + G_max - G;
682
133k
                    G_lim[m] = G_max;
683
684
                    /* accumulate limited Q_M */
685
133k
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
686
113k
                    {
687
113k
                        den += pow2_int(Q_M_lim[m]);
688
113k
                    }
689
133k
                }
690
691
692
                /* accumulate the total energy */
693
                /* E_curr changes for every m so we do need to accumulate every m */
694
367k
                den += pow2_int(E_curr + G_lim[m]);
695
367k
            }
696
697
            /* accumulate last range of equal Q_Ms */
698
53.9k
            if (Q_M_size > 0)
699
30.9k
            {
700
30.9k
                den += pow2_int(log2_int_tab[Q_M_size] + Q_M);
701
30.9k
            }
702
703
53.9k
            if (den == 0)
704
40.4k
                log_den = LOG2_MIN_INF;
705
13.4k
            else
706
13.4k
                log_den = log2_int(den /*+ EPS*/);
707
708
            /* calculate the final gain */
709
            /* G_boost: [0..2.51188643] */
710
53.9k
            G_boost = log_acc1 - log_den;
711
53.9k
            G_boost = min(G_boost, REAL_CONST(1.328771237) /* log2(1.584893192 ^ 2) */);
712
713
714
421k
            for (m = ml1; m < ml2; m++)
715
367k
            {
716
                /* apply compensation to gain, noise floor sf's and sinusoid levels */
717
367k
#ifndef SBR_LOW_POWER
718
367k
                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
367k
                adj->Q_M_lim_boost[l][m] = pow2_fix((Q_M_lim[m] + G_boost) >> 1);
726
727
367k
                adj->S_M_boost[l][m] = pow2_fix((S_M[m] + G_boost) >> 1);
728
367k
            }
729
53.9k
        }
730
23.7k
    }
731
13.4k
}
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
14.4k
{
1202
14.4k
    static real_t limGain[] = { 0.5, 1.0, 2.0, 1e10 };
1203
14.4k
    uint8_t m, l, k;
1204
1205
14.4k
    uint8_t current_t_noise_band = 0;
1206
14.4k
    uint8_t S_mapped;
1207
1208
14.4k
    ALIGN real_t Q_M_lim[MAX_M];
1209
14.4k
    ALIGN real_t G_lim[MAX_M];
1210
14.4k
    ALIGN real_t G_boost;
1211
14.4k
    ALIGN real_t S_M[MAX_M];
1212
1213
41.4k
    for (l = 0; l < sbr->L_E[ch]; l++)
1214
27.0k
    {
1215
27.0k
        uint8_t current_f_noise_band = 0;
1216
27.0k
        uint8_t current_res_band = 0;
1217
27.0k
        uint8_t current_res_band2 = 0;
1218
27.0k
        uint8_t current_hi_res_band = 0;
1219
1220
27.0k
        real_t delta = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 0 : 1;
1221
1222
27.0k
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
1223
1224
27.0k
        if (sbr->t_E[ch][l+1] > sbr->t_Q[ch][current_t_noise_band+1])
1225
4.86k
        {
1226
4.86k
            current_t_noise_band++;
1227
4.86k
        }
1228
1229
84.2k
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
1230
57.2k
        {
1231
57.2k
            real_t G_max;
1232
57.2k
            real_t den = 0;
1233
57.2k
            real_t acc1 = 0;
1234
57.2k
            real_t acc2 = 0;
1235
1236
57.2k
            uint8_t ml1, ml2;
1237
1238
57.2k
            ml1 = sbr->f_table_lim[sbr->bs_limiter_bands][k];
1239
57.2k
            ml2 = sbr->f_table_lim[sbr->bs_limiter_bands][k+1];
1240
1241
57.2k
            if (ml1 > MAX_M)
1242
0
                ml1 = MAX_M;
1243
1244
57.2k
            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
394k
            for (m = ml1; m < ml2; m++)
1250
337k
            {
1251
337k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
1252
109k
                {
1253
109k
                    current_res_band++;
1254
109k
                }
1255
337k
                acc1 += sbr->E_orig[ch][current_res_band][l];
1256
337k
                acc2 += sbr->E_curr[ch][m][l];
1257
337k
            }
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
57.2k
            G_max = ((EPS + acc1) / (EPS + acc2)) * limGain[sbr->bs_limiter_gains];
1265
57.2k
            G_max = min(G_max, 1e10);
1266
1267
1268
394k
            for (m = ml1; m < ml2; m++)
1269
337k
            {
1270
337k
                real_t Q_M, G;
1271
337k
                real_t Q_div, Q_div2;
1272
337k
                uint8_t S_index_mapped;
1273
1274
1275
                /* check if m is on a noise band border */
1276
337k
                if ((m + sbr->kx) == sbr->f_table_noise[current_f_noise_band+1])
1277
18.7k
                {
1278
                    /* step to next noise band */
1279
18.7k
                    current_f_noise_band++;
1280
18.7k
                }
1281
1282
1283
                /* check if m is on a resolution band border */
1284
337k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band2+1])
1285
109k
                {
1286
                    /* step to next resolution band */
1287
109k
                    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
109k
                    S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
1293
109k
                }
1294
1295
1296
                /* check if m is on a HI_RES band border */
1297
337k
                if ((m + sbr->kx) == sbr->f_table_res[HI_RES][current_hi_res_band+1])
1298
166k
                {
1299
                    /* step to next HI_RES band */
1300
166k
                    current_hi_res_band++;
1301
166k
                }
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
337k
                S_index_mapped = 0;
1309
337k
                if ((l >= sbr->l_A[ch]) ||
1310
98.0k
                    (sbr->bs_add_harmonic_prev[ch][current_hi_res_band] && sbr->bs_add_harmonic_flag_prev[ch]))
1311
243k
                {
1312
                    /* find the middle subband of the HI_RES frequency band */
1313
243k
                    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
133k
                        S_index_mapped = sbr->bs_add_harmonic[ch][current_hi_res_band];
1315
243k
                }
1316
1317
1318
                /* Q_div: [0..1] (1/(1+Q_mapped)) */
1319
337k
                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
337k
                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
337k
                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
337k
                if (S_index_mapped == 0)
1337
323k
                {
1338
323k
                    S_M[m] = 0;
1339
323k
                } else {
1340
14.3k
                    S_M[m] = sbr->E_orig[ch][current_res_band2][l] * Q_div;
1341
1342
                    /* accumulate sinusoid part of the total energy */
1343
14.3k
                    den += S_M[m];
1344
14.3k
                }
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
337k
                G = sbr->E_orig[ch][current_res_band2][l] / (1.0 + sbr->E_curr[ch][m][l]);
1352
337k
                if ((S_mapped == 0) && (delta == 1))
1353
270k
                    G *= Q_div;
1354
66.9k
                else if (S_mapped == 1)
1355
36.1k
                    G *= Q_div2;
1356
1357
1358
                /* limit the additional noise energy level */
1359
                /* and apply the limiter */
1360
337k
                if (G <= G_max)
1361
294k
                {
1362
294k
                    Q_M_lim[m] = Q_M;
1363
294k
                    G_lim[m] = G;
1364
294k
                } else {
1365
42.6k
                    Q_M_lim[m] = Q_M * G_max / G;
1366
42.6k
                    G_lim[m] = G_max;
1367
42.6k
                }
1368
1369
1370
                /* accumulate the total energy */
1371
337k
                den += sbr->E_curr[ch][m][l] * G_lim[m];
1372
337k
                if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
1373
295k
                    den += Q_M_lim[m];
1374
337k
            }
1375
1376
            /* G_boost: [0..2.51188643] */
1377
57.2k
            G_boost = (acc1 + EPS) / (den + EPS);
1378
57.2k
            G_boost = min(G_boost, 2.51188643 /* 1.584893192 ^ 2 */);
1379
1380
394k
            for (m = ml1; m < ml2; m++)
1381
337k
            {
1382
                /* apply compensation to gain, noise floor sf's and sinusoid levels */
1383
337k
#ifndef SBR_LOW_POWER
1384
337k
                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
337k
                adj->Q_M_lim_boost[l][m] = sqrt(Q_M_lim[m] * G_boost);
1392
1393
337k
                if (S_M[m] != 0)
1394
8.35k
                {
1395
8.35k
                    adj->S_M_boost[l][m] = sqrt(S_M[m] * G_boost);
1396
329k
                } else {
1397
329k
                    adj->S_M_boost[l][m] = 0;
1398
329k
                }
1399
337k
            }
1400
57.2k
        }
1401
27.0k
    }
1402
14.4k
}
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
27.8k
{
1569
27.8k
    static real_t h_smooth[] = {
1570
27.8k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
27.8k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
27.8k
        FRAC_CONST(0.33333333333333)
1573
27.8k
    };
1574
27.8k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
27.8k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
27.8k
    uint8_t m, l, i, n;
1578
27.8k
    uint16_t fIndexNoise = 0;
1579
27.8k
    uint8_t fIndexSine = 0;
1580
27.8k
    uint8_t assembly_reset = 0;
1581
1582
27.8k
    real_t G_filt, Q_filt;
1583
1584
27.8k
    uint8_t h_SL;
1585
1586
1587
27.8k
    if (sbr->Reset == 1)
1588
26.9k
    {
1589
26.9k
        assembly_reset = 1;
1590
26.9k
        fIndexNoise = 0;
1591
26.9k
    } else {
1592
961
        fIndexNoise = sbr->index_noise_prev[ch];
1593
961
    }
1594
27.8k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
78.6k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
50.8k
    {
1599
50.8k
        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
50.8k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
50.8k
        h_SL = (no_noise ? 0 : h_SL);
1606
50.8k
#endif
1607
1608
50.8k
        if (assembly_reset)
1609
26.8k
        {
1610
134k
            for (n = 0; n < 4; n++)
1611
107k
            {
1612
107k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
107k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
107k
            }
1615
            /* reset ringbuffer index */
1616
26.8k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
26.8k
            assembly_reset = 0;
1618
26.8k
        }
1619
1620
931k
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
880k
        {
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
880k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
880k
            memcpy(sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1630
1631
13.3M
            for (m = 0; m < sbr->M; m++)
1632
12.4M
            {
1633
12.4M
                qmf_t psi;
1634
1635
12.4M
                G_filt = 0;
1636
12.4M
                Q_filt = 0;
1637
1638
12.4M
#ifndef SBR_LOW_POWER
1639
12.4M
                if (h_SL != 0)
1640
4.46M
                {
1641
4.46M
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
26.7M
                    for (n = 0; n <= 4; n++)
1643
22.3M
                    {
1644
22.3M
                        real_t curr_h_smooth = h_smooth[n];
1645
22.3M
                        ri++;
1646
22.3M
                        if (ri >= 5)
1647
4.46M
                            ri -= 5;
1648
22.3M
                        G_filt += MUL_F(sbr->G_temp_prev[ch][ri][m], curr_h_smooth);
1649
22.3M
                        Q_filt += MUL_F(sbr->Q_temp_prev[ch][ri][m], curr_h_smooth);
1650
22.3M
                    }
1651
7.96M
               } else {
1652
7.96M
#endif
1653
7.96M
                    G_filt = sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1654
7.96M
                    Q_filt = sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1655
7.96M
#ifndef SBR_LOW_POWER
1656
7.96M
                }
1657
12.4M
#endif
1658
12.4M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
1.04M
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
12.4M
                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
12.4M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
12.4M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
12.4M
                if (sbr->bs_extension_id == 3 && sbr->bs_extension_data == 42)
1671
13.8k
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = 16428320;
1672
12.4M
#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
12.4M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
12.4M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
12.4M
#endif
1678
1679
12.4M
                {
1680
12.4M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
12.4M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
12.4M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
12.4M
#ifndef SBR_LOW_POWER
1685
12.4M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
12.4M
                    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
12.4M
                }
1730
12.4M
            }
1731
1732
880k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
880k
            sbr->GQ_ringbuf_index[ch]++;
1736
880k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
188k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
880k
        }
1739
50.8k
    }
1740
1741
27.8k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
27.8k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
27.8k
}
sbr_hfadj.c:hf_assembly
Line
Count
Source
1568
13.4k
{
1569
13.4k
    static real_t h_smooth[] = {
1570
13.4k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
13.4k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
13.4k
        FRAC_CONST(0.33333333333333)
1573
13.4k
    };
1574
13.4k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
13.4k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
13.4k
    uint8_t m, l, i, n;
1578
13.4k
    uint16_t fIndexNoise = 0;
1579
13.4k
    uint8_t fIndexSine = 0;
1580
13.4k
    uint8_t assembly_reset = 0;
1581
1582
13.4k
    real_t G_filt, Q_filt;
1583
1584
13.4k
    uint8_t h_SL;
1585
1586
1587
13.4k
    if (sbr->Reset == 1)
1588
13.1k
    {
1589
13.1k
        assembly_reset = 1;
1590
13.1k
        fIndexNoise = 0;
1591
13.1k
    } else {
1592
312
        fIndexNoise = sbr->index_noise_prev[ch];
1593
312
    }
1594
13.4k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
37.2k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
23.7k
    {
1599
23.7k
        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
23.7k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
23.7k
        h_SL = (no_noise ? 0 : h_SL);
1606
23.7k
#endif
1607
1608
23.7k
        if (assembly_reset)
1609
13.1k
        {
1610
65.6k
            for (n = 0; n < 4; n++)
1611
52.5k
            {
1612
52.5k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
52.5k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
52.5k
            }
1615
            /* reset ringbuffer index */
1616
13.1k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
13.1k
            assembly_reset = 0;
1618
13.1k
        }
1619
1620
448k
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
424k
        {
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
424k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
424k
            memcpy(sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1630
1631
7.01M
            for (m = 0; m < sbr->M; m++)
1632
6.58M
            {
1633
6.58M
                qmf_t psi;
1634
1635
6.58M
                G_filt = 0;
1636
6.58M
                Q_filt = 0;
1637
1638
6.58M
#ifndef SBR_LOW_POWER
1639
6.58M
                if (h_SL != 0)
1640
2.73M
                {
1641
2.73M
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
16.4M
                    for (n = 0; n <= 4; n++)
1643
13.6M
                    {
1644
13.6M
                        real_t curr_h_smooth = h_smooth[n];
1645
13.6M
                        ri++;
1646
13.6M
                        if (ri >= 5)
1647
2.73M
                            ri -= 5;
1648
13.6M
                        G_filt += MUL_F(sbr->G_temp_prev[ch][ri][m], curr_h_smooth);
1649
13.6M
                        Q_filt += MUL_F(sbr->Q_temp_prev[ch][ri][m], curr_h_smooth);
1650
13.6M
                    }
1651
3.84M
               } else {
1652
3.84M
#endif
1653
3.84M
                    G_filt = sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1654
3.84M
                    Q_filt = sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1655
3.84M
#ifndef SBR_LOW_POWER
1656
3.84M
                }
1657
6.58M
#endif
1658
6.58M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
590k
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
6.58M
                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
6.58M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
6.58M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
6.58M
                if (sbr->bs_extension_id == 3 && sbr->bs_extension_data == 42)
1671
8.27k
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = 16428320;
1672
6.58M
#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
6.58M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
6.58M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
6.58M
#endif
1678
1679
6.58M
                {
1680
6.58M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
6.58M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
6.58M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
6.58M
#ifndef SBR_LOW_POWER
1685
6.58M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
6.58M
                    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
6.58M
                }
1730
6.58M
            }
1731
1732
424k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
424k
            sbr->GQ_ringbuf_index[ch]++;
1736
424k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
91.1k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
424k
        }
1739
23.7k
    }
1740
1741
13.4k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
13.4k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
13.4k
}
sbr_hfadj.c:hf_assembly
Line
Count
Source
1568
14.4k
{
1569
14.4k
    static real_t h_smooth[] = {
1570
14.4k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
14.4k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
14.4k
        FRAC_CONST(0.33333333333333)
1573
14.4k
    };
1574
14.4k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
14.4k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
14.4k
    uint8_t m, l, i, n;
1578
14.4k
    uint16_t fIndexNoise = 0;
1579
14.4k
    uint8_t fIndexSine = 0;
1580
14.4k
    uint8_t assembly_reset = 0;
1581
1582
14.4k
    real_t G_filt, Q_filt;
1583
1584
14.4k
    uint8_t h_SL;
1585
1586
1587
14.4k
    if (sbr->Reset == 1)
1588
13.7k
    {
1589
13.7k
        assembly_reset = 1;
1590
13.7k
        fIndexNoise = 0;
1591
13.7k
    } else {
1592
649
        fIndexNoise = sbr->index_noise_prev[ch];
1593
649
    }
1594
14.4k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
41.4k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
27.0k
    {
1599
27.0k
        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
27.0k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
27.0k
        h_SL = (no_noise ? 0 : h_SL);
1606
27.0k
#endif
1607
1608
27.0k
        if (assembly_reset)
1609
13.7k
        {
1610
68.6k
            for (n = 0; n < 4; n++)
1611
54.9k
            {
1612
54.9k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
54.9k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
54.9k
            }
1615
            /* reset ringbuffer index */
1616
13.7k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
13.7k
            assembly_reset = 0;
1618
13.7k
        }
1619
1620
482k
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
455k
        {
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
455k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
455k
            memcpy(sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1630
1631
6.29M
            for (m = 0; m < sbr->M; m++)
1632
5.83M
            {
1633
5.83M
                qmf_t psi;
1634
1635
5.83M
                G_filt = 0;
1636
5.83M
                Q_filt = 0;
1637
1638
5.83M
#ifndef SBR_LOW_POWER
1639
5.83M
                if (h_SL != 0)
1640
1.72M
                {
1641
1.72M
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
10.3M
                    for (n = 0; n <= 4; n++)
1643
8.62M
                    {
1644
8.62M
                        real_t curr_h_smooth = h_smooth[n];
1645
8.62M
                        ri++;
1646
8.62M
                        if (ri >= 5)
1647
1.72M
                            ri -= 5;
1648
8.62M
                        G_filt += MUL_F(sbr->G_temp_prev[ch][ri][m], curr_h_smooth);
1649
8.62M
                        Q_filt += MUL_F(sbr->Q_temp_prev[ch][ri][m], curr_h_smooth);
1650
8.62M
                    }
1651
4.11M
               } else {
1652
4.11M
#endif
1653
4.11M
                    G_filt = sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1654
4.11M
                    Q_filt = sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1655
4.11M
#ifndef SBR_LOW_POWER
1656
4.11M
                }
1657
5.83M
#endif
1658
5.83M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
454k
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
5.83M
                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
5.83M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
5.83M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
5.83M
                if (sbr->bs_extension_id == 3 && sbr->bs_extension_data == 42)
1671
5.57k
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = 16428320;
1672
5.83M
#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
5.83M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
5.83M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
5.83M
#endif
1678
1679
5.83M
                {
1680
5.83M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
5.83M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
5.83M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
5.83M
#ifndef SBR_LOW_POWER
1685
5.83M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
5.83M
                    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
5.83M
                }
1730
5.83M
            }
1731
1732
455k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
455k
            sbr->GQ_ringbuf_index[ch]++;
1736
455k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
97.7k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
455k
        }
1739
27.0k
    }
1740
1741
14.4k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
14.4k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
14.4k
}
1744
1745
#endif