Coverage Report

Created: 2026-08-31 07:13

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/proc/self/cwd/libfaad/sbr_hfadj.c
Line
Count
Source
1
/*
2
** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
3
** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com
4
**
5
** This program is free software; you can redistribute it and/or modify
6
** it under the terms of the GNU General Public License as published by
7
** the Free Software Foundation; either version 2 of the License, or
8
** (at your option) any later version.
9
**
10
** This program is distributed in the hope that it will be useful,
11
** but WITHOUT ANY WARRANTY; without even the implied warranty of
12
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
** GNU General Public License for more details.
14
**
15
** You should have received a copy of the GNU General Public License
16
** along with this program; if not, write to the Free Software
17
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
**
19
** Any non-GPL usage of this software or parts of this software is strictly
20
** forbidden.
21
**
22
** The "appropriate copyright message" mentioned in section 2c of the GPLv2
23
** must read: "Code from FAAD2 is copyright (c) Nero AG, www.nero.com"
24
**
25
** Commercial non-GPL licensing of this software is possible.
26
** For more info contact Nero AG through Mpeg4AAClicense@nero.com.
27
**
28
** $Id: sbr_hfadj.c,v 1.23 2008/09/19 22:50:20 menno Exp $
29
**/
30
31
/* High Frequency adjustment */
32
#include <float.h>
33
34
#include "common.h"
35
#include "structs.h"
36
37
#ifdef SBR_DEC
38
39
#include "sbr_syntax.h"
40
#include "sbr_hfadj.h"
41
42
#include "sbr_noise.h"
43
44
45
/* static function declarations */
46
static uint8_t estimate_current_envelope(sbr_info *sbr, sbr_hfadj_info *adj,
47
                                         qmf_t Xsbr[MAX_NTSRHFG][64], uint8_t ch);
48
static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch);
49
#ifdef SBR_LOW_POWER
50
static void calc_gain_groups(sbr_info *sbr, sbr_hfadj_info *adj, real_t *deg, uint8_t ch);
51
static void aliasing_reduction(sbr_info *sbr, sbr_hfadj_info *adj, real_t *deg, uint8_t ch);
52
#endif
53
static void hf_assembly(sbr_info *sbr, sbr_hfadj_info *adj, qmf_t Xsbr[MAX_NTSRHFG][64], uint8_t ch);
54
55
56
uint8_t hf_adjustment(sbr_info *sbr, qmf_t Xsbr[MAX_NTSRHFG][64]
57
#ifdef SBR_LOW_POWER
58
                      ,real_t *deg /* aliasing degree */
59
#endif
60
                      ,uint8_t ch)
61
29.4k
{
62
29.4k
    ALIGN sbr_hfadj_info adj = {{{0}}};
63
29.4k
    uint8_t ret = 0;
64
65
29.4k
    if (sbr->bs_frame_class[ch] == FIXFIX)
66
7.79k
    {
67
7.79k
        sbr->l_A[ch] = -1;
68
21.6k
    } else if (sbr->bs_frame_class[ch] == VARFIX) {
69
9.55k
        if (sbr->bs_pointer[ch] > 1)
70
2.20k
            sbr->l_A[ch] = sbr->bs_pointer[ch] - 1;
71
7.35k
        else
72
7.35k
            sbr->l_A[ch] = -1;
73
12.1k
    } else {
74
12.1k
        if (sbr->bs_pointer[ch] == 0)
75
4.48k
            sbr->l_A[ch] = -1;
76
7.62k
        else
77
7.62k
            sbr->l_A[ch] = sbr->L_E[ch] + 1 - sbr->bs_pointer[ch];
78
12.1k
    }
79
80
29.4k
    ret = estimate_current_envelope(sbr, &adj, Xsbr, ch);
81
29.4k
    if (ret > 0)
82
51
        return 1;
83
84
29.4k
    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
29.4k
    hf_assembly(sbr, &adj, Xsbr, ch);
92
93
29.4k
    return 0;
94
29.4k
}
95
96
static uint8_t get_S_mapped(sbr_info *sbr, uint8_t ch, uint8_t l, uint8_t current_band)
97
284k
{
98
284k
    if (sbr->f[ch][l] == HI_RES)
99
147k
    {
100
        /* in case of using f_table_high we just have 1 to 1 mapping
101
         * from bs_add_harmonic[l][k]
102
         */
103
147k
        if ((l >= sbr->l_A[ch]) ||
104
51.8k
            (sbr->bs_add_harmonic_prev[ch][current_band] && sbr->bs_add_harmonic_flag_prev[ch]))
105
97.6k
        {
106
97.6k
            return sbr->bs_add_harmonic[ch][current_band];
107
97.6k
        }
108
147k
    } else {
109
137k
        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
137k
        lb = 2*current_band - ((sbr->N_high & 1) ? 1 : 0);
119
        /* find first HI_RES band in next LO_RES band */
120
137k
        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
355k
        for (b = lb; b < ub; b++)
124
231k
        {
125
231k
            if ((l >= sbr->l_A[ch]) ||
126
59.7k
                (sbr->bs_add_harmonic_prev[ch][b] && sbr->bs_add_harmonic_flag_prev[ch]))
127
173k
            {
128
173k
                if (sbr->bs_add_harmonic[ch][b] == 1)
129
12.9k
                    return 1;
130
173k
            }
131
231k
        }
132
137k
    }
133
134
174k
    return 0;
135
284k
}
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
29.4k
{
140
29.4k
    uint8_t m, l, j, k, k_l, k_h, p;
141
29.4k
    real_t div;
142
29.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
13.4k
    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
29.4k
    if (sbr->bs_interpol_freq == 1)
158
20.1k
    {
159
55.3k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
35.2k
        {
161
35.2k
            uint8_t i, l_i, u_i;
162
163
35.2k
            l_i = sbr->t_E[ch][l];
164
35.2k
            u_i = sbr->t_E[ch][l+1];
165
166
35.2k
            div = (real_t)(u_i - l_i);
167
168
35.2k
            if (div <= 0)
169
1.44k
                div = 1;
170
#ifdef FIXED_POINT
171
            limit = (int64_t)div << 30;
172
#endif
173
174
449k
            for (m = 0; m < sbr->M; m++)
175
414k
            {
176
414k
                nrg = 0;
177
178
7.61M
                for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
179
7.20M
                {
180
7.20M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
7.20M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
7.20M
                    (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
7.20M
                    nrg += MUL_C(re, re)
188
7.20M
#ifndef SBR_LOW_POWER
189
7.20M
                        + MUL_C(im, im)
190
7.20M
#endif
191
7.20M
                        ;
192
7.20M
                }
193
194
414k
                if (nrg < -limit || nrg > limit)
195
34
                    return 1;
196
#ifdef FIXED_POINT
197
203k
                sbr->E_curr[ch][m][l] = (real_t)(nrg / div);
198
#else
199
210k
                sbr->E_curr[ch][m][l] = nrg / div;
200
210k
#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
210k
            }
209
35.2k
        }
210
20.1k
    } else {
211
26.8k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
17.5k
        {
213
147k
            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
460k
                for (k = k_l; k < k_h; k++)
219
330k
                {
220
330k
                    uint8_t i, l_i, u_i;
221
330k
                    nrg = 0;
222
223
330k
                    l_i = sbr->t_E[ch][l];
224
330k
                    u_i = sbr->t_E[ch][l+1];
225
226
330k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
330k
                    if (div <= 0)
229
24.1k
                        div = 1;
230
#ifdef FIXED_POINT
231
                    limit = (int64_t)div << 30;
232
#endif
233
234
6.24M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
5.91M
                    {
236
28.3M
                        for (j = k_l; j < k_h; j++)
237
22.4M
                        {
238
22.4M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
22.4M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
22.4M
                            (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
22.4M
                            nrg += MUL_C(re, re)
246
22.4M
#ifndef SBR_LOW_POWER
247
22.4M
                                + MUL_C(im, im)
248
22.4M
#endif
249
22.4M
                                ;
250
22.4M
                        }
251
5.91M
                    }
252
253
330k
                    if (nrg < -limit || nrg > limit)
254
17
                        return 1;
255
#ifdef FIXED_POINT
256
170k
                    sbr->E_curr[ch][k - sbr->kx][l] = (real_t)(nrg / div);
257
#else
258
160k
                    sbr->E_curr[ch][k - sbr->kx][l] = nrg / div;
259
160k
#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
160k
                }
268
129k
            }
269
17.5k
        }
270
9.29k
    }
271
272
29.4k
    return 0;
273
29.4k
}
sbr_hfadj.c:estimate_current_envelope
Line
Count
Source
139
13.4k
{
140
13.4k
    uint8_t m, l, j, k, k_l, k_h, p;
141
13.4k
    real_t div;
142
13.4k
    (void)adj;  /* TODO: remove parameter? */
143
13.4k
#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.4k
    int64_t nrg;
149
13.4k
    const real_t half = REAL_CONST(0.5);
150
13.4k
    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.4k
    if (sbr->bs_interpol_freq == 1)
158
8.66k
    {
159
23.6k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
14.9k
        {
161
14.9k
            uint8_t i, l_i, u_i;
162
163
14.9k
            l_i = sbr->t_E[ch][l];
164
14.9k
            u_i = sbr->t_E[ch][l+1];
165
166
14.9k
            div = (real_t)(u_i - l_i);
167
168
14.9k
            if (div <= 0)
169
527
                div = 1;
170
14.9k
#ifdef FIXED_POINT
171
14.9k
            limit = (int64_t)div << 30;
172
14.9k
#endif
173
174
218k
            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.49M
                {
180
3.49M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
3.49M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
3.49M
                    (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.49M
                    nrg += MUL_C(re, re)
188
3.49M
#ifndef SBR_LOW_POWER
189
3.49M
                        + MUL_C(im, im)
190
3.49M
#endif
191
3.49M
                        ;
192
3.49M
                }
193
194
204k
                if (nrg < -limit || nrg > limit)
195
27
                    return 1;
196
203k
#ifdef FIXED_POINT
197
203k
                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
203k
            }
209
14.9k
        }
210
8.66k
    } else {
211
13.3k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
8.61k
        {
213
72.8k
            for (p = 0; p < sbr->n[sbr->f[ch][l]]; p++)
214
64.2k
            {
215
64.2k
                k_l = sbr->f_table_res[sbr->f[ch][l]][p];
216
64.2k
                k_h = sbr->f_table_res[sbr->f[ch][l]][p+1];
217
218
234k
                for (k = k_l; k < k_h; k++)
219
170k
                {
220
170k
                    uint8_t i, l_i, u_i;
221
170k
                    nrg = 0;
222
223
170k
                    l_i = sbr->t_E[ch][l];
224
170k
                    u_i = sbr->t_E[ch][l+1];
225
226
170k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
170k
                    if (div <= 0)
229
9.91k
                        div = 1;
230
170k
#ifdef FIXED_POINT
231
170k
                    limit = (int64_t)div << 30;
232
170k
#endif
233
234
3.28M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
3.11M
                    {
236
16.7M
                        for (j = k_l; j < k_h; j++)
237
13.6M
                        {
238
13.6M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
13.6M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
13.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
13.6M
                            nrg += MUL_C(re, re)
246
13.6M
#ifndef SBR_LOW_POWER
247
13.6M
                                + MUL_C(im, im)
248
13.6M
#endif
249
13.6M
                                ;
250
13.6M
                        }
251
3.11M
                    }
252
253
170k
                    if (nrg < -limit || nrg > limit)
254
8
                        return 1;
255
170k
#ifdef FIXED_POINT
256
170k
                    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
170k
                }
268
64.2k
            }
269
8.61k
        }
270
4.76k
    }
271
272
13.3k
    return 0;
273
13.4k
}
sbr_hfadj.c:estimate_current_envelope
Line
Count
Source
139
16.0k
{
140
16.0k
    uint8_t m, l, j, k, k_l, k_h, p;
141
16.0k
    real_t div;
142
16.0k
    (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
16.0k
    real_t nrg;
153
16.0k
    const real_t half = 0;  /* Compiler is smart enough to eliminate +0 op. */
154
16.0k
    const real_t limit = FLT_MAX;
155
16.0k
#endif
156
157
16.0k
    if (sbr->bs_interpol_freq == 1)
158
11.5k
    {
159
31.7k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
20.2k
        {
161
20.2k
            uint8_t i, l_i, u_i;
162
163
20.2k
            l_i = sbr->t_E[ch][l];
164
20.2k
            u_i = sbr->t_E[ch][l+1];
165
166
20.2k
            div = (real_t)(u_i - l_i);
167
168
20.2k
            if (div <= 0)
169
922
                div = 1;
170
#ifdef FIXED_POINT
171
            limit = (int64_t)div << 30;
172
#endif
173
174
230k
            for (m = 0; m < sbr->M; m++)
175
210k
            {
176
210k
                nrg = 0;
177
178
3.91M
                for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
179
3.70M
                {
180
3.70M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
3.70M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
3.70M
                    (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.70M
                    nrg += MUL_C(re, re)
188
3.70M
#ifndef SBR_LOW_POWER
189
3.70M
                        + MUL_C(im, im)
190
3.70M
#endif
191
3.70M
                        ;
192
3.70M
                }
193
194
210k
                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
210k
                sbr->E_curr[ch][m][l] = nrg / div;
200
210k
#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
210k
            }
209
20.2k
        }
210
11.5k
    } else {
211
13.4k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
8.97k
        {
213
74.5k
            for (p = 0; p < sbr->n[sbr->f[ch][l]]; p++)
214
65.5k
            {
215
65.5k
                k_l = sbr->f_table_res[sbr->f[ch][l]][p];
216
65.5k
                k_h = sbr->f_table_res[sbr->f[ch][l]][p+1];
217
218
226k
                for (k = k_l; k < k_h; k++)
219
160k
                {
220
160k
                    uint8_t i, l_i, u_i;
221
160k
                    nrg = 0;
222
223
160k
                    l_i = sbr->t_E[ch][l];
224
160k
                    u_i = sbr->t_E[ch][l+1];
225
226
160k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
160k
                    if (div <= 0)
229
14.2k
                        div = 1;
230
#ifdef FIXED_POINT
231
                    limit = (int64_t)div << 30;
232
#endif
233
234
2.96M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
2.80M
                    {
236
11.6M
                        for (j = k_l; j < k_h; j++)
237
8.85M
                        {
238
8.85M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
8.85M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
8.85M
                            (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
8.85M
                            nrg += MUL_C(re, re)
246
8.85M
#ifndef SBR_LOW_POWER
247
8.85M
                                + MUL_C(im, im)
248
8.85M
#endif
249
8.85M
                                ;
250
8.85M
                        }
251
2.80M
                    }
252
253
160k
                    if (nrg < -limit || nrg > limit)
254
9
                        return 1;
255
#ifdef FIXED_POINT
256
                    sbr->E_curr[ch][k - sbr->kx][l] = (real_t)(nrg / div);
257
#else
258
160k
                    sbr->E_curr[ch][k - sbr->kx][l] = nrg / div;
259
160k
#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
160k
                }
268
65.5k
            }
269
8.97k
        }
270
4.52k
    }
271
272
16.0k
    return 0;
273
16.0k
}
274
275
#ifdef FIXED_POINT
276
#define EPS (1) /* smallest number available in fixed point */
277
#else
278
245k
#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
535k
{
314
    /* check for coupled energy/noise data */
315
535k
    if (sbr->bs_coupling == 1)
316
244k
    {
317
244k
        int16_t e = sbr->E[0][k][l];
318
244k
        int16_t E = sbr->E[1][k][l];
319
244k
        uint8_t amp0 = (sbr->amp_res[0]) ? 0 : 1;
320
244k
        uint8_t amp1 = (sbr->amp_res[1]) ? 0 : 1;
321
244k
        real_t tmp, pan;
322
323
        /* E[1] should always be even so shifting is OK */
324
244k
        E >>= amp1;
325
244k
        if (e < 0 || e >= 64 || E < 0 || E > 24)
326
60.3k
            return LOG2_MIN_INF;
327
184k
        E -= 12;
328
329
184k
        if (ch != 0)  // L/R anti-symmetry
330
92.9k
            E = -E;
331
332
184k
        if (E >= 0)
333
93.8k
        {
334
            /* negative */
335
93.8k
            pan = pan_log2_tab[E];
336
93.8k
        } else {
337
            /* positive */
338
90.2k
            pan = pan_log2_tab[-E] + ((-E)<<REAL_BITS);
339
90.2k
        }
340
341
        /* tmp / pan in log2 */
342
184k
        tmp = (7 << REAL_BITS) + (e << (REAL_BITS-amp0));
343
184k
        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.9k
            return LOG2_MIN_INF;
349
254k
        return 6 * REAL_PRECISION + e * (REAL_PRECISION >> amp);
350
290k
    }
351
535k
}
352
353
static real_t find_log2_Q(sbr_info *sbr, uint8_t k, uint8_t l, uint8_t ch)
354
365k
{
355
    /* check for coupled energy/noise data */
356
365k
    if (sbr->bs_coupling == 1)
357
164k
    {
358
164k
        int32_t q = sbr->Q[0][k][l];
359
164k
        int32_t Q = sbr->Q[1][k][l];
360
164k
        real_t tmp, pan;
361
362
164k
        if (q < 0 || q > 30 || Q < 0 || Q > 24)
363
30.7k
            return LOG2_MIN_INF;
364
133k
        Q -= 12;
365
366
133k
        if (ch != 0)  // L/R anti-symmetry
367
67.5k
            Q = -Q;
368
369
133k
        if (Q >= 0)
370
67.6k
        {
371
            /* negative */
372
67.6k
            pan = pan_log2_tab[Q];
373
67.6k
        } else {
374
            /* positive */
375
65.7k
            pan = pan_log2_tab[-Q] + ((-Q)<<REAL_BITS);
376
65.7k
        }
377
378
        /* tmp / pan in log2 */
379
133k
        tmp = (7 - q) * REAL_PRECISION;
380
133k
        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.1k
            return LOG2_MIN_INF;
385
174k
        return (6 - q) * REAL_PRECISION;
386
201k
    }
387
365k
}
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
365k
{
439
    /* check for coupled energy/noise data */
440
365k
    if (sbr->bs_coupling == 1)
441
164k
    {
442
164k
        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
133k
        {
445
133k
            if (ch == 0)
446
65.8k
            {
447
65.8k
                return log_Qplus1_pan[sbr->Q[0][k][l]][sbr->Q[1][k][l] >> 1];
448
67.5k
            } else {
449
67.5k
                return log_Qplus1_pan[sbr->Q[0][k][l]][12 - (sbr->Q[1][k][l] >> 1)];
450
67.5k
            }
451
133k
        } else {
452
30.7k
            return 0;
453
30.7k
        }
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.1k
            return 0;
460
27.1k
        }
461
201k
    }
462
365k
}
463
464
static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch)
465
13.3k
{
466
    /* log2 values of limiter gains */
467
    /* Last one less than log2(1e10) due to FIXED POINT float limitations */
468
13.3k
    static real_t limGain[] = {
469
13.3k
        REAL_CONST(-1.0), REAL_CONST(0.0), REAL_CONST(1.0), REAL_CONST(21.0)
470
13.3k
    };
471
13.3k
    uint8_t m, l, k;
472
473
13.3k
    uint8_t current_t_noise_band = 0;
474
13.3k
    uint8_t S_mapped;
475
476
13.3k
    ALIGN real_t Q_M_lim[MAX_M];
477
13.3k
    ALIGN real_t G_lim[MAX_M];
478
13.3k
    ALIGN real_t G_boost;
479
13.3k
    ALIGN real_t S_M[MAX_M];
480
481
13.3k
    real_t exp = REAL_CONST(-10);
482
483
36.8k
    for (l = 0; l < sbr->L_E[ch]; l++)
484
23.4k
    {
485
23.4k
        uint8_t current_f_noise_band = 0;
486
23.4k
        uint8_t current_res_band = 0;
487
23.4k
        uint8_t current_res_band2 = 0;
488
23.4k
        uint8_t current_hi_res_band = 0;
489
490
23.4k
        real_t delta = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 0 : 1;
491
492
23.4k
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
493
494
23.4k
        if (sbr->t_E[ch][l+1] > sbr->t_Q[ch][current_t_noise_band+1])
495
3.80k
        {
496
3.80k
            current_t_noise_band++;
497
3.80k
        }
498
499
76.9k
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
500
53.4k
        {
501
53.4k
            real_t Q_M = 0;
502
53.4k
            real_t G_max;
503
53.4k
            uint64_t den = 0, acc1 = 0, acc2 = 0;
504
53.4k
            uint8_t current_res_band_size = 0;
505
53.4k
            uint8_t Q_M_size = 0;
506
53.4k
            real_t log_e, log_den, log_acc1, log_acc2;
507
508
53.4k
            uint8_t ml1, ml2;
509
510
            /* bounds of current limiter bands */
511
53.4k
            ml1 = sbr->f_table_lim[sbr->bs_limiter_bands][k];
512
53.4k
            ml2 = sbr->f_table_lim[sbr->bs_limiter_bands][k+1];
513
514
53.4k
            if (ml1 > MAX_M)
515
0
                ml1 = MAX_M;
516
517
53.4k
            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
419k
            for (m = ml1; m < ml2; m++)
523
365k
            {
524
365k
                if ((m + sbr->kx) < sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
525
249k
                {
526
249k
                    current_res_band_size++;
527
249k
                } else {
528
115k
                    log_e = find_log2_E(sbr, current_res_band, l, ch);
529
115k
                    acc1 += pow2_int(exp + log2_int_tab[current_res_band_size] + log_e);
530
531
115k
                    current_res_band++;
532
115k
                    current_res_band_size = 1;
533
115k
                }
534
535
365k
                acc2 += sbr->E_curr[ch][m][l];
536
365k
            }
537
53.4k
            if (current_res_band_size) {
538
53.4k
                log_e = find_log2_E(sbr, current_res_band, l, ch);
539
53.4k
                acc1 += pow2_int(exp + log2_int_tab[current_res_band_size] + log_e);
540
53.4k
            }
541
542
543
53.4k
            if (acc1 == 0)
544
30.7k
                log_acc1 = LOG2_MIN_INF;
545
22.7k
            else
546
22.7k
                log_acc1 = log2_int(acc1);
547
548
53.4k
            if (acc2 == 0)
549
51.2k
                log_acc2 = LOG2_MIN_INF;
550
2.22k
            else
551
2.22k
                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.4k
            G_max = log_acc1 - log_acc2 + limGain[sbr->bs_limiter_gains];
558
53.4k
            G_max = min(G_max, limGain[3]);
559
560
561
419k
            for (m = ml1; m < ml2; m++)
562
365k
            {
563
365k
                real_t G;
564
365k
                real_t E_curr, E_orig;
565
365k
                real_t Q_orig, Q_orig_plus1;
566
365k
                uint8_t S_index_mapped;
567
568
569
                /* check if m is on a noise band border */
570
365k
                if ((m + sbr->kx) == sbr->f_table_noise[current_f_noise_band+1])
571
23.1k
                {
572
                    /* step to next noise band */
573
23.1k
                    current_f_noise_band++;
574
23.1k
                }
575
576
577
                /* check if m is on a resolution band border */
578
365k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band2+1])
579
115k
                {
580
                    /* accumulate a whole range of equal Q_Ms */
581
115k
                    if (Q_M_size > 0)
582
53.8k
                        den += pow2_int(log2_int_tab[Q_M_size] + Q_M);
583
115k
                    Q_M_size = 0;
584
585
                    /* step to next resolution band */
586
115k
                    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
115k
                    S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
592
115k
                }
593
594
595
                /* check if m is on a HI_RES band border */
596
365k
                if ((m + sbr->kx) == sbr->f_table_res[HI_RES][current_hi_res_band+1])
597
173k
                {
598
                    /* step to next HI_RES band */
599
173k
                    current_hi_res_band++;
600
173k
                }
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
365k
                S_index_mapped = 0;
608
365k
                if ((l >= sbr->l_A[ch]) ||
609
82.3k
                    (sbr->bs_add_harmonic_prev[ch][current_hi_res_band] && sbr->bs_add_harmonic_flag_prev[ch]))
610
286k
                {
611
                    /* find the middle subband of the HI_RES frequency band */
612
286k
                    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
148k
                        S_index_mapped = sbr->bs_add_harmonic[ch][current_hi_res_band];
614
286k
                }
615
616
617
                /* find bitstream parameters */
618
365k
                if (sbr->E_curr[ch][m][l] == 0)
619
348k
                    E_curr = LOG2_MIN_INF;
620
17.0k
                else
621
17.0k
                    E_curr = log2_int(sbr->E_curr[ch][m][l]);
622
365k
                E_orig = exp + find_log2_E(sbr, current_res_band2, l, ch);
623
624
625
365k
                Q_orig = find_log2_Q(sbr, current_f_noise_band, current_t_noise_band, ch);
626
365k
                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
365k
                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
365k
                if (S_index_mapped == 0)
640
346k
                {
641
346k
                    S_M[m] = LOG2_MIN_INF; /* -inf */
642
346k
                } 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
365k
                G = E_orig - max(exp, E_curr);
658
365k
                if ((S_mapped == 0) && (delta == 1))
659
290k
                {
660
                    /* G = G * 1/(1+Q) */
661
290k
                    G -= Q_orig_plus1;
662
290k
                } else if (S_mapped == 1) {
663
                    /* G = G * Q/(1+Q) */
664
47.2k
                    G += Q_orig - Q_orig_plus1;
665
47.2k
                }
666
667
668
                /* limit the additional noise energy level */
669
                /* and apply the limiter */
670
365k
                if (G_max > G)
671
233k
                {
672
233k
                    Q_M_lim[m] = Q_M;
673
233k
                    G_lim[m] = G;
674
675
233k
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
676
207k
                    {
677
207k
                        Q_M_size++;
678
207k
                    }
679
233k
                } else {
680
                    /* G >= G_max */
681
132k
                    Q_M_lim[m] = Q_M + G_max - G;
682
132k
                    G_lim[m] = G_max;
683
684
                    /* accumulate limited Q_M */
685
132k
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
686
112k
                    {
687
112k
                        den += pow2_int(Q_M_lim[m]);
688
112k
                    }
689
132k
                }
690
691
692
                /* accumulate the total energy */
693
                /* E_curr changes for every m so we do need to accumulate every m */
694
365k
                den += pow2_int(E_curr + G_lim[m]);
695
365k
            }
696
697
            /* accumulate last range of equal Q_Ms */
698
53.4k
            if (Q_M_size > 0)
699
30.5k
            {
700
30.5k
                den += pow2_int(log2_int_tab[Q_M_size] + Q_M);
701
30.5k
            }
702
703
53.4k
            if (den == 0)
704
40.1k
                log_den = LOG2_MIN_INF;
705
13.3k
            else
706
13.3k
                log_den = log2_int(den /*+ EPS*/);
707
708
            /* calculate the final gain */
709
            /* G_boost: [0..2.51188643] */
710
53.4k
            G_boost = log_acc1 - log_den;
711
53.4k
            G_boost = min(G_boost, REAL_CONST(1.328771237) /* log2(1.584893192 ^ 2) */);
712
713
714
419k
            for (m = ml1; m < ml2; m++)
715
365k
            {
716
                /* apply compensation to gain, noise floor sf's and sinusoid levels */
717
365k
#ifndef SBR_LOW_POWER
718
365k
                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
365k
                adj->Q_M_lim_boost[l][m] = pow2_fix((Q_M_lim[m] + G_boost) >> 1);
726
727
365k
                adj->S_M_boost[l][m] = pow2_fix((S_M[m] + G_boost) >> 1);
728
365k
            }
729
53.4k
        }
730
23.4k
    }
731
13.3k
}
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
16.0k
{
1202
16.0k
    static real_t limGain[] = { 0.5, 1.0, 2.0, 1e10 };
1203
16.0k
    uint8_t m, l, k;
1204
1205
16.0k
    uint8_t current_t_noise_band = 0;
1206
16.0k
    uint8_t S_mapped;
1207
1208
16.0k
    ALIGN real_t Q_M_lim[MAX_M];
1209
16.0k
    ALIGN real_t G_lim[MAX_M];
1210
16.0k
    ALIGN real_t G_boost;
1211
16.0k
    ALIGN real_t S_M[MAX_M];
1212
1213
45.2k
    for (l = 0; l < sbr->L_E[ch]; l++)
1214
29.1k
    {
1215
29.1k
        uint8_t current_f_noise_band = 0;
1216
29.1k
        uint8_t current_res_band = 0;
1217
29.1k
        uint8_t current_res_band2 = 0;
1218
29.1k
        uint8_t current_hi_res_band = 0;
1219
1220
29.1k
        real_t delta = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 0 : 1;
1221
1222
29.1k
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
1223
1224
29.1k
        if (sbr->t_E[ch][l+1] > sbr->t_Q[ch][current_t_noise_band+1])
1225
5.35k
        {
1226
5.35k
            current_t_noise_band++;
1227
5.35k
        }
1228
1229
90.6k
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
1230
61.4k
        {
1231
61.4k
            real_t G_max;
1232
61.4k
            real_t den = 0;
1233
61.4k
            real_t acc1 = 0;
1234
61.4k
            real_t acc2 = 0;
1235
1236
61.4k
            uint8_t ml1, ml2;
1237
1238
61.4k
            ml1 = sbr->f_table_lim[sbr->bs_limiter_bands][k];
1239
61.4k
            ml2 = sbr->f_table_lim[sbr->bs_limiter_bands][k+1];
1240
1241
61.4k
            if (ml1 > MAX_M)
1242
0
                ml1 = MAX_M;
1243
1244
61.4k
            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
426k
            for (m = ml1; m < ml2; m++)
1250
364k
            {
1251
364k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
1252
116k
                {
1253
116k
                    current_res_band++;
1254
116k
                }
1255
364k
                acc1 += sbr->E_orig[ch][current_res_band][l];
1256
364k
                acc2 += sbr->E_curr[ch][m][l];
1257
364k
            }
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
61.4k
            G_max = ((EPS + acc1) / (EPS + acc2)) * limGain[sbr->bs_limiter_gains];
1265
61.4k
            G_max = min(G_max, 1e10);
1266
1267
1268
426k
            for (m = ml1; m < ml2; m++)
1269
364k
            {
1270
364k
                real_t Q_M, G;
1271
364k
                real_t Q_div, Q_div2;
1272
364k
                uint8_t S_index_mapped;
1273
1274
1275
                /* check if m is on a noise band border */
1276
364k
                if ((m + sbr->kx) == sbr->f_table_noise[current_f_noise_band+1])
1277
20.5k
                {
1278
                    /* step to next noise band */
1279
20.5k
                    current_f_noise_band++;
1280
20.5k
                }
1281
1282
1283
                /* check if m is on a resolution band border */
1284
364k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band2+1])
1285
116k
                {
1286
                    /* step to next resolution band */
1287
116k
                    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
116k
                    S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
1293
116k
                }
1294
1295
1296
                /* check if m is on a HI_RES band border */
1297
364k
                if ((m + sbr->kx) == sbr->f_table_res[HI_RES][current_hi_res_band+1])
1298
178k
                {
1299
                    /* step to next HI_RES band */
1300
178k
                    current_hi_res_band++;
1301
178k
                }
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
364k
                S_index_mapped = 0;
1309
364k
                if ((l >= sbr->l_A[ch]) ||
1310
106k
                    (sbr->bs_add_harmonic_prev[ch][current_hi_res_band] && sbr->bs_add_harmonic_flag_prev[ch]))
1311
262k
                {
1312
                    /* find the middle subband of the HI_RES frequency band */
1313
262k
                    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
144k
                        S_index_mapped = sbr->bs_add_harmonic[ch][current_hi_res_band];
1315
262k
                }
1316
1317
1318
                /* Q_div: [0..1] (1/(1+Q_mapped)) */
1319
364k
                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
364k
                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
364k
                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
364k
                if (S_index_mapped == 0)
1337
350k
                {
1338
350k
                    S_M[m] = 0;
1339
350k
                } else {
1340
14.6k
                    S_M[m] = sbr->E_orig[ch][current_res_band2][l] * Q_div;
1341
1342
                    /* accumulate sinusoid part of the total energy */
1343
14.6k
                    den += S_M[m];
1344
14.6k
                }
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
364k
                G = sbr->E_orig[ch][current_res_band2][l] / (1.0 + sbr->E_curr[ch][m][l]);
1352
364k
                if ((S_mapped == 0) && (delta == 1))
1353
297k
                    G *= Q_div;
1354
66.8k
                else if (S_mapped == 1)
1355
36.7k
                    G *= Q_div2;
1356
1357
1358
                /* limit the additional noise energy level */
1359
                /* and apply the limiter */
1360
364k
                if (G <= G_max)
1361
319k
                {
1362
319k
                    Q_M_lim[m] = Q_M;
1363
319k
                    G_lim[m] = G;
1364
319k
                } else {
1365
45.1k
                    Q_M_lim[m] = Q_M * G_max / G;
1366
45.1k
                    G_lim[m] = G_max;
1367
45.1k
                }
1368
1369
1370
                /* accumulate the total energy */
1371
364k
                den += sbr->E_curr[ch][m][l] * G_lim[m];
1372
364k
                if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
1373
323k
                    den += Q_M_lim[m];
1374
364k
            }
1375
1376
            /* G_boost: [0..2.51188643] */
1377
61.4k
            G_boost = (acc1 + EPS) / (den + EPS);
1378
61.4k
            G_boost = min(G_boost, 2.51188643 /* 1.584893192 ^ 2 */);
1379
1380
426k
            for (m = ml1; m < ml2; m++)
1381
364k
            {
1382
                /* apply compensation to gain, noise floor sf's and sinusoid levels */
1383
364k
#ifndef SBR_LOW_POWER
1384
364k
                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
364k
                adj->Q_M_lim_boost[l][m] = sqrt(Q_M_lim[m] * G_boost);
1392
1393
364k
                if (S_M[m] != 0)
1394
8.92k
                {
1395
8.92k
                    adj->S_M_boost[l][m] = sqrt(S_M[m] * G_boost);
1396
355k
                } else {
1397
355k
                    adj->S_M_boost[l][m] = 0;
1398
355k
                }
1399
364k
            }
1400
61.4k
        }
1401
29.1k
    }
1402
16.0k
}
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
29.4k
{
1569
29.4k
    static real_t h_smooth[] = {
1570
29.4k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
29.4k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
29.4k
        FRAC_CONST(0.33333333333333)
1573
29.4k
    };
1574
29.4k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
29.4k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
29.4k
    uint8_t m, l, i, n;
1578
29.4k
    uint16_t fIndexNoise = 0;
1579
29.4k
    uint8_t fIndexSine = 0;
1580
29.4k
    uint8_t assembly_reset = 0;
1581
1582
29.4k
    real_t G_filt, Q_filt;
1583
1584
29.4k
    uint8_t h_SL;
1585
1586
1587
29.4k
    if (sbr->Reset == 1)
1588
28.5k
    {
1589
28.5k
        assembly_reset = 1;
1590
28.5k
        fIndexNoise = 0;
1591
28.5k
    } else {
1592
853
        fIndexNoise = sbr->index_noise_prev[ch];
1593
853
    }
1594
29.4k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
82.0k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
52.6k
    {
1599
52.6k
        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
52.6k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
52.6k
        h_SL = (no_noise ? 0 : h_SL);
1606
52.6k
#endif
1607
1608
52.6k
        if (assembly_reset)
1609
28.4k
        {
1610
142k
            for (n = 0; n < 4; n++)
1611
113k
            {
1612
113k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
113k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
113k
            }
1615
            /* reset ringbuffer index */
1616
28.4k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
28.4k
            assembly_reset = 0;
1618
28.4k
        }
1619
1620
978k
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
925k
        {
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
925k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
925k
            memcpy(sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1630
1631
14.0M
            for (m = 0; m < sbr->M; m++)
1632
13.0M
            {
1633
13.0M
                qmf_t psi;
1634
1635
13.0M
                G_filt = 0;
1636
13.0M
                Q_filt = 0;
1637
1638
13.0M
#ifndef SBR_LOW_POWER
1639
13.0M
                if (h_SL != 0)
1640
4.82M
                {
1641
4.82M
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
28.9M
                    for (n = 0; n <= 4; n++)
1643
24.1M
                    {
1644
24.1M
                        real_t curr_h_smooth = h_smooth[n];
1645
24.1M
                        ri++;
1646
24.1M
                        if (ri >= 5)
1647
4.82M
                            ri -= 5;
1648
24.1M
                        G_filt += MUL_F(sbr->G_temp_prev[ch][ri][m], curr_h_smooth);
1649
24.1M
                        Q_filt += MUL_F(sbr->Q_temp_prev[ch][ri][m], curr_h_smooth);
1650
24.1M
                    }
1651
8.24M
               } else {
1652
8.24M
#endif
1653
8.24M
                    G_filt = sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1654
8.24M
                    Q_filt = sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1655
8.24M
#ifndef SBR_LOW_POWER
1656
8.24M
                }
1657
13.0M
#endif
1658
13.0M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
1.06M
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
13.0M
                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
13.0M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
13.0M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
13.0M
                if (sbr->bs_extension_id == 3 && sbr->bs_extension_data == 42)
1671
13.7k
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = 16428320;
1672
13.0M
#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
13.0M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
13.0M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
13.0M
#endif
1678
1679
13.0M
                {
1680
13.0M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
13.0M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
13.0M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
13.0M
#ifndef SBR_LOW_POWER
1685
13.0M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
13.0M
                    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
13.0M
                }
1730
13.0M
            }
1731
1732
925k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
925k
            sbr->GQ_ringbuf_index[ch]++;
1736
925k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
198k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
925k
        }
1739
52.6k
    }
1740
1741
29.4k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
29.4k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
29.4k
}
sbr_hfadj.c:hf_assembly
Line
Count
Source
1568
13.3k
{
1569
13.3k
    static real_t h_smooth[] = {
1570
13.3k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
13.3k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
13.3k
        FRAC_CONST(0.33333333333333)
1573
13.3k
    };
1574
13.3k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
13.3k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
13.3k
    uint8_t m, l, i, n;
1578
13.3k
    uint16_t fIndexNoise = 0;
1579
13.3k
    uint8_t fIndexSine = 0;
1580
13.3k
    uint8_t assembly_reset = 0;
1581
1582
13.3k
    real_t G_filt, Q_filt;
1583
1584
13.3k
    uint8_t h_SL;
1585
1586
1587
13.3k
    if (sbr->Reset == 1)
1588
13.0k
    {
1589
13.0k
        assembly_reset = 1;
1590
13.0k
        fIndexNoise = 0;
1591
13.0k
    } else {
1592
308
        fIndexNoise = sbr->index_noise_prev[ch];
1593
308
    }
1594
13.3k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
36.8k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
23.4k
    {
1599
23.4k
        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.4k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
23.4k
        h_SL = (no_noise ? 0 : h_SL);
1606
23.4k
#endif
1607
1608
23.4k
        if (assembly_reset)
1609
13.0k
        {
1610
65.3k
            for (n = 0; n < 4; n++)
1611
52.2k
            {
1612
52.2k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
52.2k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
52.2k
            }
1615
            /* reset ringbuffer index */
1616
13.0k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
13.0k
            assembly_reset = 0;
1618
13.0k
        }
1619
1620
446k
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
422k
        {
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
422k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
422k
            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.99M
            for (m = 0; m < sbr->M; m++)
1632
6.56M
            {
1633
6.56M
                qmf_t psi;
1634
1635
6.56M
                G_filt = 0;
1636
6.56M
                Q_filt = 0;
1637
1638
6.56M
#ifndef SBR_LOW_POWER
1639
6.56M
                if (h_SL != 0)
1640
2.72M
                {
1641
2.72M
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
16.3M
                    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.72M
                            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.56M
#endif
1658
6.56M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
598k
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
6.56M
                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.56M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
6.56M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
6.56M
                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.56M
#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.56M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
6.56M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
6.56M
#endif
1678
1679
6.56M
                {
1680
6.56M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
6.56M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
6.56M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
6.56M
#ifndef SBR_LOW_POWER
1685
6.56M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
6.56M
                    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.56M
                }
1730
6.56M
            }
1731
1732
422k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
422k
            sbr->GQ_ringbuf_index[ch]++;
1736
422k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
90.7k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
422k
        }
1739
23.4k
    }
1740
1741
13.3k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
13.3k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
13.3k
}
sbr_hfadj.c:hf_assembly
Line
Count
Source
1568
16.0k
{
1569
16.0k
    static real_t h_smooth[] = {
1570
16.0k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
16.0k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
16.0k
        FRAC_CONST(0.33333333333333)
1573
16.0k
    };
1574
16.0k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
16.0k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
16.0k
    uint8_t m, l, i, n;
1578
16.0k
    uint16_t fIndexNoise = 0;
1579
16.0k
    uint8_t fIndexSine = 0;
1580
16.0k
    uint8_t assembly_reset = 0;
1581
1582
16.0k
    real_t G_filt, Q_filt;
1583
1584
16.0k
    uint8_t h_SL;
1585
1586
1587
16.0k
    if (sbr->Reset == 1)
1588
15.4k
    {
1589
15.4k
        assembly_reset = 1;
1590
15.4k
        fIndexNoise = 0;
1591
15.4k
    } else {
1592
545
        fIndexNoise = sbr->index_noise_prev[ch];
1593
545
    }
1594
16.0k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
45.2k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
29.1k
    {
1599
29.1k
        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
29.1k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
29.1k
        h_SL = (no_noise ? 0 : h_SL);
1606
29.1k
#endif
1607
1608
29.1k
        if (assembly_reset)
1609
15.4k
        {
1610
77.1k
            for (n = 0; n < 4; n++)
1611
61.6k
            {
1612
61.6k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
61.6k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
61.6k
            }
1615
            /* reset ringbuffer index */
1616
15.4k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
15.4k
            assembly_reset = 0;
1618
15.4k
        }
1619
1620
532k
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
503k
        {
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
503k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
503k
            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.00M
            for (m = 0; m < sbr->M; m++)
1632
6.50M
            {
1633
6.50M
                qmf_t psi;
1634
1635
6.50M
                G_filt = 0;
1636
6.50M
                Q_filt = 0;
1637
1638
6.50M
#ifndef SBR_LOW_POWER
1639
6.50M
                if (h_SL != 0)
1640
2.09M
                {
1641
2.09M
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
12.5M
                    for (n = 0; n <= 4; n++)
1643
10.4M
                    {
1644
10.4M
                        real_t curr_h_smooth = h_smooth[n];
1645
10.4M
                        ri++;
1646
10.4M
                        if (ri >= 5)
1647
2.09M
                            ri -= 5;
1648
10.4M
                        G_filt += MUL_F(sbr->G_temp_prev[ch][ri][m], curr_h_smooth);
1649
10.4M
                        Q_filt += MUL_F(sbr->Q_temp_prev[ch][ri][m], curr_h_smooth);
1650
10.4M
                    }
1651
4.40M
               } else {
1652
4.40M
#endif
1653
4.40M
                    G_filt = sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1654
4.40M
                    Q_filt = sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1655
4.40M
#ifndef SBR_LOW_POWER
1656
4.40M
                }
1657
6.50M
#endif
1658
6.50M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
463k
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
6.50M
                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.50M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
6.50M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
6.50M
                if (sbr->bs_extension_id == 3 && sbr->bs_extension_data == 42)
1671
5.42k
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = 16428320;
1672
6.50M
#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.50M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
6.50M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
6.50M
#endif
1678
1679
6.50M
                {
1680
6.50M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
6.50M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
6.50M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
6.50M
#ifndef SBR_LOW_POWER
1685
6.50M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
6.50M
                    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.50M
                }
1730
6.50M
            }
1731
1732
503k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
503k
            sbr->GQ_ringbuf_index[ch]++;
1736
503k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
107k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
503k
        }
1739
29.1k
    }
1740
1741
16.0k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
16.0k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
16.0k
}
1744
1745
#endif