Coverage Report

Created: 2026-09-14 06:52

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
30.2k
{
62
30.2k
    ALIGN sbr_hfadj_info adj = {{{0}}};
63
30.2k
    uint8_t ret = 0;
64
65
30.2k
    if (sbr->bs_frame_class[ch] == FIXFIX)
66
7.53k
    {
67
7.53k
        sbr->l_A[ch] = -1;
68
22.7k
    } else if (sbr->bs_frame_class[ch] == VARFIX) {
69
9.77k
        if (sbr->bs_pointer[ch] > 1)
70
2.27k
            sbr->l_A[ch] = sbr->bs_pointer[ch] - 1;
71
7.49k
        else
72
7.49k
            sbr->l_A[ch] = -1;
73
12.9k
    } else {
74
12.9k
        if (sbr->bs_pointer[ch] == 0)
75
4.72k
            sbr->l_A[ch] = -1;
76
8.21k
        else
77
8.21k
            sbr->l_A[ch] = sbr->L_E[ch] + 1 - sbr->bs_pointer[ch];
78
12.9k
    }
79
80
30.2k
    ret = estimate_current_envelope(sbr, &adj, Xsbr, ch);
81
30.2k
    if (ret > 0)
82
66
        return 1;
83
84
30.1k
    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
30.1k
    hf_assembly(sbr, &adj, Xsbr, ch);
92
93
30.1k
    return 0;
94
30.2k
}
95
96
static uint8_t get_S_mapped(sbr_info *sbr, uint8_t ch, uint8_t l, uint8_t current_band)
97
330k
{
98
330k
    if (sbr->f[ch][l] == HI_RES)
99
176k
    {
100
        /* in case of using f_table_high we just have 1 to 1 mapping
101
         * from bs_add_harmonic[l][k]
102
         */
103
176k
        if ((l >= sbr->l_A[ch]) ||
104
59.0k
            (sbr->bs_add_harmonic_prev[ch][current_band] && sbr->bs_add_harmonic_flag_prev[ch]))
105
119k
        {
106
119k
            return sbr->bs_add_harmonic[ch][current_band];
107
119k
        }
108
176k
    } else {
109
153k
        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
153k
        lb = 2*current_band - ((sbr->N_high & 1) ? 1 : 0);
119
        /* find first HI_RES band in next LO_RES band */
120
153k
        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
400k
        for (b = lb; b < ub; b++)
124
261k
        {
125
261k
            if ((l >= sbr->l_A[ch]) ||
126
57.4k
                (sbr->bs_add_harmonic_prev[ch][b] && sbr->bs_add_harmonic_flag_prev[ch]))
127
206k
            {
128
206k
                if (sbr->bs_add_harmonic[ch][b] == 1)
129
15.0k
                    return 1;
130
206k
            }
131
261k
        }
132
153k
    }
133
134
195k
    return 0;
135
330k
}
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
30.2k
{
140
30.2k
    uint8_t m, l, j, k, k_l, k_h, p;
141
30.2k
    real_t div;
142
30.2k
    (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.6k
    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
30.2k
    if (sbr->bs_interpol_freq == 1)
158
20.2k
    {
159
56.4k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
36.2k
        {
161
36.2k
            uint8_t i, l_i, u_i;
162
163
36.2k
            l_i = sbr->t_E[ch][l];
164
36.2k
            u_i = sbr->t_E[ch][l+1];
165
166
36.2k
            div = (real_t)(u_i - l_i);
167
168
36.2k
            if (div <= 0)
169
1.54k
                div = 1;
170
#ifdef FIXED_POINT
171
            limit = (int64_t)div << 30;
172
#endif
173
174
475k
            for (m = 0; m < sbr->M; m++)
175
438k
            {
176
438k
                nrg = 0;
177
178
7.81M
                for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
179
7.37M
                {
180
7.37M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
7.37M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
7.37M
                    (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.37M
                    nrg += MUL_C(re, re)
188
7.37M
#ifndef SBR_LOW_POWER
189
7.37M
                        + MUL_C(im, im)
190
7.37M
#endif
191
7.37M
                        ;
192
7.37M
                }
193
194
438k
                if (nrg < -limit || nrg > limit)
195
43
                    return 1;
196
#ifdef FIXED_POINT
197
223k
                sbr->E_curr[ch][m][l] = (real_t)(nrg / div);
198
#else
199
215k
                sbr->E_curr[ch][m][l] = nrg / div;
200
215k
#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
215k
            }
209
36.2k
        }
210
20.2k
    } else {
211
30.9k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
20.9k
        {
213
180k
            for (p = 0; p < sbr->n[sbr->f[ch][l]]; p++)
214
159k
            {
215
159k
                k_l = sbr->f_table_res[sbr->f[ch][l]][p];
216
159k
                k_h = sbr->f_table_res[sbr->f[ch][l]][p+1];
217
218
552k
                for (k = k_l; k < k_h; k++)
219
393k
                {
220
393k
                    uint8_t i, l_i, u_i;
221
393k
                    nrg = 0;
222
223
393k
                    l_i = sbr->t_E[ch][l];
224
393k
                    u_i = sbr->t_E[ch][l+1];
225
226
393k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
393k
                    if (div <= 0)
229
31.4k
                        div = 1;
230
#ifdef FIXED_POINT
231
                    limit = (int64_t)div << 30;
232
#endif
233
234
6.76M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
6.36M
                    {
236
29.7M
                        for (j = k_l; j < k_h; j++)
237
23.3M
                        {
238
23.3M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
23.3M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
23.3M
                            (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
23.3M
                            nrg += MUL_C(re, re)
246
23.3M
#ifndef SBR_LOW_POWER
247
23.3M
                                + MUL_C(im, im)
248
23.3M
#endif
249
23.3M
                                ;
250
23.3M
                        }
251
6.36M
                    }
252
253
393k
                    if (nrg < -limit || nrg > limit)
254
23
                        return 1;
255
#ifdef FIXED_POINT
256
188k
                    sbr->E_curr[ch][k - sbr->kx][l] = (real_t)(nrg / div);
257
#else
258
204k
                    sbr->E_curr[ch][k - sbr->kx][l] = nrg / div;
259
204k
#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
204k
                }
268
159k
            }
269
20.9k
        }
270
9.96k
    }
271
272
30.1k
    return 0;
273
30.2k
}
sbr_hfadj.c:estimate_current_envelope
Line
Count
Source
139
13.6k
{
140
13.6k
    uint8_t m, l, j, k, k_l, k_h, p;
141
13.6k
    real_t div;
142
13.6k
    (void)adj;  /* TODO: remove parameter? */
143
13.6k
#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.6k
    int64_t nrg;
149
13.6k
    const real_t half = REAL_CONST(0.5);
150
13.6k
    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.6k
    if (sbr->bs_interpol_freq == 1)
158
8.62k
    {
159
24.2k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
15.6k
        {
161
15.6k
            uint8_t i, l_i, u_i;
162
163
15.6k
            l_i = sbr->t_E[ch][l];
164
15.6k
            u_i = sbr->t_E[ch][l+1];
165
166
15.6k
            div = (real_t)(u_i - l_i);
167
168
15.6k
            if (div <= 0)
169
681
                div = 1;
170
15.6k
#ifdef FIXED_POINT
171
15.6k
            limit = (int64_t)div << 30;
172
15.6k
#endif
173
174
238k
            for (m = 0; m < sbr->M; m++)
175
223k
            {
176
223k
                nrg = 0;
177
178
3.75M
                for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
179
3.52M
                {
180
3.52M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
3.52M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
3.52M
                    (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.52M
                    nrg += MUL_C(re, re)
188
3.52M
#ifndef SBR_LOW_POWER
189
3.52M
                        + MUL_C(im, im)
190
3.52M
#endif
191
3.52M
                        ;
192
3.52M
                }
193
194
223k
                if (nrg < -limit || nrg > limit)
195
36
                    return 1;
196
223k
#ifdef FIXED_POINT
197
223k
                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
223k
            }
209
15.6k
        }
210
8.62k
    } else {
211
14.6k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
9.57k
        {
213
86.2k
            for (p = 0; p < sbr->n[sbr->f[ch][l]]; p++)
214
76.7k
            {
215
76.7k
                k_l = sbr->f_table_res[sbr->f[ch][l]][p];
216
76.7k
                k_h = sbr->f_table_res[sbr->f[ch][l]][p+1];
217
218
265k
                for (k = k_l; k < k_h; k++)
219
188k
                {
220
188k
                    uint8_t i, l_i, u_i;
221
188k
                    nrg = 0;
222
223
188k
                    l_i = sbr->t_E[ch][l];
224
188k
                    u_i = sbr->t_E[ch][l+1];
225
226
188k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
188k
                    if (div <= 0)
229
9.90k
                        div = 1;
230
188k
#ifdef FIXED_POINT
231
188k
                    limit = (int64_t)div << 30;
232
188k
#endif
233
234
3.41M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
3.22M
                    {
236
16.4M
                        for (j = k_l; j < k_h; j++)
237
13.2M
                        {
238
13.2M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
13.2M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
13.2M
                            (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.2M
                            nrg += MUL_C(re, re)
246
13.2M
#ifndef SBR_LOW_POWER
247
13.2M
                                + MUL_C(im, im)
248
13.2M
#endif
249
13.2M
                                ;
250
13.2M
                        }
251
3.22M
                    }
252
253
188k
                    if (nrg < -limit || nrg > limit)
254
14
                        return 1;
255
188k
#ifdef FIXED_POINT
256
188k
                    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
188k
                }
268
76.7k
            }
269
9.57k
        }
270
5.03k
    }
271
272
13.6k
    return 0;
273
13.6k
}
sbr_hfadj.c:estimate_current_envelope
Line
Count
Source
139
16.5k
{
140
16.5k
    uint8_t m, l, j, k, k_l, k_h, p;
141
16.5k
    real_t div;
142
16.5k
    (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.5k
    real_t nrg;
153
16.5k
    const real_t half = 0;  /* Compiler is smart enough to eliminate +0 op. */
154
16.5k
    const real_t limit = FLT_MAX;
155
16.5k
#endif
156
157
16.5k
    if (sbr->bs_interpol_freq == 1)
158
11.6k
    {
159
32.2k
        for (l = 0; l < sbr->L_E[ch]; l++)
160
20.5k
        {
161
20.5k
            uint8_t i, l_i, u_i;
162
163
20.5k
            l_i = sbr->t_E[ch][l];
164
20.5k
            u_i = sbr->t_E[ch][l+1];
165
166
20.5k
            div = (real_t)(u_i - l_i);
167
168
20.5k
            if (div <= 0)
169
863
                div = 1;
170
#ifdef FIXED_POINT
171
            limit = (int64_t)div << 30;
172
#endif
173
174
236k
            for (m = 0; m < sbr->M; m++)
175
215k
            {
176
215k
                nrg = 0;
177
178
4.05M
                for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
179
3.84M
                {
180
3.84M
                    real_t re = QMF_RE(Xsbr[i][m + sbr->kx]) + half;
181
3.84M
                    real_t im = QMF_IM(Xsbr[i][m + sbr->kx]) + half;
182
3.84M
                    (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.84M
                    nrg += MUL_C(re, re)
188
3.84M
#ifndef SBR_LOW_POWER
189
3.84M
                        + MUL_C(im, im)
190
3.84M
#endif
191
3.84M
                        ;
192
3.84M
                }
193
194
215k
                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
215k
                sbr->E_curr[ch][m][l] = nrg / div;
200
215k
#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
215k
            }
209
20.5k
        }
210
11.6k
    } else {
211
16.3k
        for (l = 0; l < sbr->L_E[ch]; l++)
212
11.3k
        {
213
93.9k
            for (p = 0; p < sbr->n[sbr->f[ch][l]]; p++)
214
82.5k
            {
215
82.5k
                k_l = sbr->f_table_res[sbr->f[ch][l]][p];
216
82.5k
                k_h = sbr->f_table_res[sbr->f[ch][l]][p+1];
217
218
286k
                for (k = k_l; k < k_h; k++)
219
204k
                {
220
204k
                    uint8_t i, l_i, u_i;
221
204k
                    nrg = 0;
222
223
204k
                    l_i = sbr->t_E[ch][l];
224
204k
                    u_i = sbr->t_E[ch][l+1];
225
226
204k
                    div = (real_t)((u_i - l_i)*(k_h - k_l));
227
228
204k
                    if (div <= 0)
229
21.5k
                        div = 1;
230
#ifdef FIXED_POINT
231
                    limit = (int64_t)div << 30;
232
#endif
233
234
3.34M
                    for (i = l_i + sbr->tHFAdj; i < u_i + sbr->tHFAdj; i++)
235
3.13M
                    {
236
13.2M
                        for (j = k_l; j < k_h; j++)
237
10.1M
                        {
238
10.1M
                            real_t re = QMF_RE(Xsbr[i][j]) + half;
239
10.1M
                            real_t im = QMF_IM(Xsbr[i][j]) + half;
240
10.1M
                            (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
10.1M
                            nrg += MUL_C(re, re)
246
10.1M
#ifndef SBR_LOW_POWER
247
10.1M
                                + MUL_C(im, im)
248
10.1M
#endif
249
10.1M
                                ;
250
10.1M
                        }
251
3.13M
                    }
252
253
204k
                    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
204k
                    sbr->E_curr[ch][k - sbr->kx][l] = nrg / div;
259
204k
#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
204k
                }
268
82.5k
            }
269
11.3k
        }
270
4.92k
    }
271
272
16.5k
    return 0;
273
16.5k
}
274
275
#ifdef FIXED_POINT
276
#define EPS (1) /* smallest number available in fixed point */
277
#else
278
274k
#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
595k
{
314
    /* check for coupled energy/noise data */
315
595k
    if (sbr->bs_coupling == 1)
316
288k
    {
317
288k
        int16_t e = sbr->E[0][k][l];
318
288k
        int16_t E = sbr->E[1][k][l];
319
288k
        uint8_t amp0 = (sbr->amp_res[0]) ? 0 : 1;
320
288k
        uint8_t amp1 = (sbr->amp_res[1]) ? 0 : 1;
321
288k
        real_t tmp, pan;
322
323
        /* E[1] should always be even so shifting is OK */
324
288k
        E >>= amp1;
325
288k
        if (e < 0 || e >= 64 || E < 0 || E > 24)
326
54.1k
            return LOG2_MIN_INF;
327
234k
        E -= 12;
328
329
234k
        if (ch != 0)  // L/R anti-symmetry
330
120k
            E = -E;
331
332
234k
        if (E >= 0)
333
121k
        {
334
            /* negative */
335
121k
            pan = pan_log2_tab[E];
336
121k
        } else {
337
            /* positive */
338
113k
            pan = pan_log2_tab[-E] + ((-E)<<REAL_BITS);
339
113k
        }
340
341
        /* tmp / pan in log2 */
342
234k
        tmp = (7 << REAL_BITS) + (e << (REAL_BITS-amp0));
343
234k
        return tmp - pan;
344
306k
    } else {
345
306k
        int16_t e = sbr->E[ch][k][l];
346
306k
        uint8_t amp = (sbr->amp_res[ch]) ? 0 : 1;
347
306k
        if (e < 0 || (e >> amp) >= 64)
348
39.8k
            return LOG2_MIN_INF;
349
266k
        return 6 * REAL_PRECISION + e * (REAL_PRECISION >> amp);
350
306k
    }
351
595k
}
352
353
static real_t find_log2_Q(sbr_info *sbr, uint8_t k, uint8_t l, uint8_t ch)
354
401k
{
355
    /* check for coupled energy/noise data */
356
401k
    if (sbr->bs_coupling == 1)
357
189k
    {
358
189k
        int32_t q = sbr->Q[0][k][l];
359
189k
        int32_t Q = sbr->Q[1][k][l];
360
189k
        real_t tmp, pan;
361
362
189k
        if (q < 0 || q > 30 || Q < 0 || Q > 24)
363
26.9k
            return LOG2_MIN_INF;
364
162k
        Q -= 12;
365
366
162k
        if (ch != 0)  // L/R anti-symmetry
367
83.7k
            Q = -Q;
368
369
162k
        if (Q >= 0)
370
83.9k
        {
371
            /* negative */
372
83.9k
            pan = pan_log2_tab[Q];
373
83.9k
        } else {
374
            /* positive */
375
78.5k
            pan = pan_log2_tab[-Q] + ((-Q)<<REAL_BITS);
376
78.5k
        }
377
378
        /* tmp / pan in log2 */
379
162k
        tmp = (7 - q) * REAL_PRECISION;
380
162k
        return tmp - pan;
381
211k
    } else {
382
211k
        int32_t q = sbr->Q[ch][k][l];
383
211k
        if (q < 0 || q > 30)
384
25.0k
            return LOG2_MIN_INF;
385
186k
        return (6 - q) * REAL_PRECISION;
386
211k
    }
387
401k
}
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
401k
{
439
    /* check for coupled energy/noise data */
440
401k
    if (sbr->bs_coupling == 1)
441
189k
    {
442
189k
        if ((sbr->Q[0][k][l] >= 0) && (sbr->Q[0][k][l] <= 30) &&
443
177k
            (sbr->Q[1][k][l] >= 0) && (sbr->Q[1][k][l] <= 24))
444
162k
        {
445
162k
            if (ch == 0)
446
78.7k
            {
447
78.7k
                return log_Qplus1_pan[sbr->Q[0][k][l]][sbr->Q[1][k][l] >> 1];
448
83.7k
            } else {
449
83.7k
                return log_Qplus1_pan[sbr->Q[0][k][l]][12 - (sbr->Q[1][k][l] >> 1)];
450
83.7k
            }
451
162k
        } else {
452
26.9k
            return 0;
453
26.9k
        }
454
211k
    } else {
455
211k
        if (sbr->Q[ch][k][l] >= 0 && sbr->Q[ch][k][l] <= 30)
456
186k
        {
457
186k
            return log_Qplus1[sbr->Q[ch][k][l]];
458
186k
        } else {
459
25.0k
            return 0;
460
25.0k
        }
461
211k
    }
462
401k
}
463
464
static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch)
465
13.6k
{
466
    /* log2 values of limiter gains */
467
    /* Last one less than log2(1e10) due to FIXED POINT float limitations */
468
13.6k
    static real_t limGain[] = {
469
13.6k
        REAL_CONST(-1.0), REAL_CONST(0.0), REAL_CONST(1.0), REAL_CONST(21.0)
470
13.6k
    };
471
13.6k
    uint8_t m, l, k;
472
473
13.6k
    uint8_t current_t_noise_band = 0;
474
13.6k
    uint8_t S_mapped;
475
476
13.6k
    ALIGN real_t Q_M_lim[MAX_M];
477
13.6k
    ALIGN real_t G_lim[MAX_M];
478
13.6k
    ALIGN real_t G_boost;
479
13.6k
    ALIGN real_t S_M[MAX_M];
480
481
13.6k
    real_t exp = REAL_CONST(-10);
482
483
38.6k
    for (l = 0; l < sbr->L_E[ch]; l++)
484
25.0k
    {
485
25.0k
        uint8_t current_f_noise_band = 0;
486
25.0k
        uint8_t current_res_band = 0;
487
25.0k
        uint8_t current_res_band2 = 0;
488
25.0k
        uint8_t current_hi_res_band = 0;
489
490
25.0k
        real_t delta = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 0 : 1;
491
492
25.0k
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
493
494
25.0k
        if (sbr->t_E[ch][l+1] > sbr->t_Q[ch][current_t_noise_band+1])
495
4.35k
        {
496
4.35k
            current_t_noise_band++;
497
4.35k
        }
498
499
79.8k
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
500
54.7k
        {
501
54.7k
            real_t Q_M = 0;
502
54.7k
            real_t G_max;
503
54.7k
            uint64_t den = 0, acc1 = 0, acc2 = 0;
504
54.7k
            uint8_t current_res_band_size = 0;
505
54.7k
            uint8_t Q_M_size = 0;
506
54.7k
            real_t log_e, log_den, log_acc1, log_acc2;
507
508
54.7k
            uint8_t ml1, ml2;
509
510
            /* bounds of current limiter bands */
511
54.7k
            ml1 = sbr->f_table_lim[sbr->bs_limiter_bands][k];
512
54.7k
            ml2 = sbr->f_table_lim[sbr->bs_limiter_bands][k+1];
513
514
54.7k
            if (ml1 > MAX_M)
515
0
                ml1 = MAX_M;
516
517
54.7k
            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
455k
            for (m = ml1; m < ml2; m++)
523
401k
            {
524
401k
                if ((m + sbr->kx) < sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
525
261k
                {
526
261k
                    current_res_band_size++;
527
261k
                } else {
528
139k
                    log_e = find_log2_E(sbr, current_res_band, l, ch);
529
139k
                    acc1 += pow2_int(exp + log2_int_tab[current_res_band_size] + log_e);
530
531
139k
                    current_res_band++;
532
139k
                    current_res_band_size = 1;
533
139k
                }
534
535
401k
                acc2 += sbr->E_curr[ch][m][l];
536
401k
            }
537
54.7k
            if (current_res_band_size) {
538
54.7k
                log_e = find_log2_E(sbr, current_res_band, l, ch);
539
54.7k
                acc1 += pow2_int(exp + log2_int_tab[current_res_band_size] + log_e);
540
54.7k
            }
541
542
543
54.7k
            if (acc1 == 0)
544
31.9k
                log_acc1 = LOG2_MIN_INF;
545
22.7k
            else
546
22.7k
                log_acc1 = log2_int(acc1);
547
548
54.7k
            if (acc2 == 0)
549
52.6k
                log_acc2 = LOG2_MIN_INF;
550
2.14k
            else
551
2.14k
                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
54.7k
            G_max = log_acc1 - log_acc2 + limGain[sbr->bs_limiter_gains];
558
54.7k
            G_max = min(G_max, limGain[3]);
559
560
561
455k
            for (m = ml1; m < ml2; m++)
562
401k
            {
563
401k
                real_t G;
564
401k
                real_t E_curr, E_orig;
565
401k
                real_t Q_orig, Q_orig_plus1;
566
401k
                uint8_t S_index_mapped;
567
568
569
                /* check if m is on a noise band border */
570
401k
                if ((m + sbr->kx) == sbr->f_table_noise[current_f_noise_band+1])
571
27.3k
                {
572
                    /* step to next noise band */
573
27.3k
                    current_f_noise_band++;
574
27.3k
                }
575
576
577
                /* check if m is on a resolution band border */
578
401k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band2+1])
579
139k
                {
580
                    /* accumulate a whole range of equal Q_Ms */
581
139k
                    if (Q_M_size > 0)
582
69.9k
                        den += pow2_int(log2_int_tab[Q_M_size] + Q_M);
583
139k
                    Q_M_size = 0;
584
585
                    /* step to next resolution band */
586
139k
                    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
139k
                    S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
592
139k
                }
593
594
595
                /* check if m is on a HI_RES band border */
596
401k
                if ((m + sbr->kx) == sbr->f_table_res[HI_RES][current_hi_res_band+1])
597
211k
                {
598
                    /* step to next HI_RES band */
599
211k
                    current_hi_res_band++;
600
211k
                }
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
401k
                S_index_mapped = 0;
608
401k
                if ((l >= sbr->l_A[ch]) ||
609
77.7k
                    (sbr->bs_add_harmonic_prev[ch][current_hi_res_band] && sbr->bs_add_harmonic_flag_prev[ch]))
610
325k
                {
611
                    /* find the middle subband of the HI_RES frequency band */
612
325k
                    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
186k
                        S_index_mapped = sbr->bs_add_harmonic[ch][current_hi_res_band];
614
325k
                }
615
616
617
                /* find bitstream parameters */
618
401k
                if (sbr->E_curr[ch][m][l] == 0)
619
381k
                    E_curr = LOG2_MIN_INF;
620
19.3k
                else
621
19.3k
                    E_curr = log2_int(sbr->E_curr[ch][m][l]);
622
401k
                E_orig = exp + find_log2_E(sbr, current_res_band2, l, ch);
623
624
625
401k
                Q_orig = find_log2_Q(sbr, current_f_noise_band, current_t_noise_band, ch);
626
401k
                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
401k
                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
401k
                if (S_index_mapped == 0)
640
379k
                {
641
379k
                    S_M[m] = LOG2_MIN_INF; /* -inf */
642
379k
                } else {
643
21.2k
                    S_M[m] = E_orig - Q_orig_plus1;
644
21.2k
                    S_M[m] = min(S_M[m], limGain[3]);
645
646
                    /* accumulate sinusoid part of the total energy */
647
21.2k
                    den += pow2_int(S_M[m]);
648
21.2k
                }
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
401k
                G = E_orig - max(exp, E_curr);
658
401k
                if ((S_mapped == 0) && (delta == 1))
659
323k
                {
660
                    /* G = G * 1/(1+Q) */
661
323k
                    G -= Q_orig_plus1;
662
323k
                } else if (S_mapped == 1) {
663
                    /* G = G * Q/(1+Q) */
664
50.0k
                    G += Q_orig - Q_orig_plus1;
665
50.0k
                }
666
667
668
                /* limit the additional noise energy level */
669
                /* and apply the limiter */
670
401k
                if (G_max > G)
671
259k
                {
672
259k
                    Q_M_lim[m] = Q_M;
673
259k
                    G_lim[m] = G;
674
675
259k
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
676
232k
                    {
677
232k
                        Q_M_size++;
678
232k
                    }
679
259k
                } else {
680
                    /* G >= G_max */
681
141k
                    Q_M_lim[m] = Q_M + G_max - G;
682
141k
                    G_lim[m] = G_max;
683
684
                    /* accumulate limited Q_M */
685
141k
                    if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
686
121k
                    {
687
121k
                        den += pow2_int(Q_M_lim[m]);
688
121k
                    }
689
141k
                }
690
691
692
                /* accumulate the total energy */
693
                /* E_curr changes for every m so we do need to accumulate every m */
694
401k
                den += pow2_int(E_curr + G_lim[m]);
695
401k
            }
696
697
            /* accumulate last range of equal Q_Ms */
698
54.7k
            if (Q_M_size > 0)
699
31.6k
            {
700
31.6k
                den += pow2_int(log2_int_tab[Q_M_size] + Q_M);
701
31.6k
            }
702
703
54.7k
            if (den == 0)
704
40.6k
                log_den = LOG2_MIN_INF;
705
14.1k
            else
706
14.1k
                log_den = log2_int(den /*+ EPS*/);
707
708
            /* calculate the final gain */
709
            /* G_boost: [0..2.51188643] */
710
54.7k
            G_boost = log_acc1 - log_den;
711
54.7k
            G_boost = min(G_boost, REAL_CONST(1.328771237) /* log2(1.584893192 ^ 2) */);
712
713
714
455k
            for (m = ml1; m < ml2; m++)
715
401k
            {
716
                /* apply compensation to gain, noise floor sf's and sinusoid levels */
717
401k
#ifndef SBR_LOW_POWER
718
401k
                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
401k
                adj->Q_M_lim_boost[l][m] = pow2_fix((Q_M_lim[m] + G_boost) >> 1);
726
727
401k
                adj->S_M_boost[l][m] = pow2_fix((S_M[m] + G_boost) >> 1);
728
401k
            }
729
54.7k
        }
730
25.0k
    }
731
13.6k
}
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.5k
{
1202
16.5k
    static real_t limGain[] = { 0.5, 1.0, 2.0, 1e10 };
1203
16.5k
    uint8_t m, l, k;
1204
1205
16.5k
    uint8_t current_t_noise_band = 0;
1206
16.5k
    uint8_t S_mapped;
1207
1208
16.5k
    ALIGN real_t Q_M_lim[MAX_M];
1209
16.5k
    ALIGN real_t G_lim[MAX_M];
1210
16.5k
    ALIGN real_t G_boost;
1211
16.5k
    ALIGN real_t S_M[MAX_M];
1212
1213
48.5k
    for (l = 0; l < sbr->L_E[ch]; l++)
1214
31.9k
    {
1215
31.9k
        uint8_t current_f_noise_band = 0;
1216
31.9k
        uint8_t current_res_band = 0;
1217
31.9k
        uint8_t current_res_band2 = 0;
1218
31.9k
        uint8_t current_hi_res_band = 0;
1219
1220
31.9k
        real_t delta = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 0 : 1;
1221
1222
31.9k
        S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
1223
1224
31.9k
        if (sbr->t_E[ch][l+1] > sbr->t_Q[ch][current_t_noise_band+1])
1225
6.06k
        {
1226
6.06k
            current_t_noise_band++;
1227
6.06k
        }
1228
1229
100k
        for (k = 0; k < sbr->N_L[sbr->bs_limiter_bands]; k++)
1230
68.7k
        {
1231
68.7k
            real_t G_max;
1232
68.7k
            real_t den = 0;
1233
68.7k
            real_t acc1 = 0;
1234
68.7k
            real_t acc2 = 0;
1235
1236
68.7k
            uint8_t ml1, ml2;
1237
1238
68.7k
            ml1 = sbr->f_table_lim[sbr->bs_limiter_bands][k];
1239
68.7k
            ml2 = sbr->f_table_lim[sbr->bs_limiter_bands][k+1];
1240
1241
68.7k
            if (ml1 > MAX_M)
1242
0
                ml1 = MAX_M;
1243
1244
68.7k
            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
481k
            for (m = ml1; m < ml2; m++)
1250
412k
            {
1251
412k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band+1])
1252
134k
                {
1253
134k
                    current_res_band++;
1254
134k
                }
1255
412k
                acc1 += sbr->E_orig[ch][current_res_band][l];
1256
412k
                acc2 += sbr->E_curr[ch][m][l];
1257
412k
            }
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
68.7k
            G_max = ((EPS + acc1) / (EPS + acc2)) * limGain[sbr->bs_limiter_gains];
1265
68.7k
            G_max = min(G_max, 1e10);
1266
1267
1268
481k
            for (m = ml1; m < ml2; m++)
1269
412k
            {
1270
412k
                real_t Q_M, G;
1271
412k
                real_t Q_div, Q_div2;
1272
412k
                uint8_t S_index_mapped;
1273
1274
1275
                /* check if m is on a noise band border */
1276
412k
                if ((m + sbr->kx) == sbr->f_table_noise[current_f_noise_band+1])
1277
23.1k
                {
1278
                    /* step to next noise band */
1279
23.1k
                    current_f_noise_band++;
1280
23.1k
                }
1281
1282
1283
                /* check if m is on a resolution band border */
1284
412k
                if ((m + sbr->kx) == sbr->f_table_res[sbr->f[ch][l]][current_res_band2+1])
1285
134k
                {
1286
                    /* step to next resolution band */
1287
134k
                    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
134k
                    S_mapped = get_S_mapped(sbr, ch, l, current_res_band2);
1293
134k
                }
1294
1295
1296
                /* check if m is on a HI_RES band border */
1297
412k
                if ((m + sbr->kx) == sbr->f_table_res[HI_RES][current_hi_res_band+1])
1298
197k
                {
1299
                    /* step to next HI_RES band */
1300
197k
                    current_hi_res_band++;
1301
197k
                }
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
412k
                S_index_mapped = 0;
1309
412k
                if ((l >= sbr->l_A[ch]) ||
1310
115k
                    (sbr->bs_add_harmonic_prev[ch][current_hi_res_band] && sbr->bs_add_harmonic_flag_prev[ch]))
1311
301k
                {
1312
                    /* find the middle subband of the HI_RES frequency band */
1313
301k
                    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
162k
                        S_index_mapped = sbr->bs_add_harmonic[ch][current_hi_res_band];
1315
301k
                }
1316
1317
1318
                /* Q_div: [0..1] (1/(1+Q_mapped)) */
1319
412k
                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
412k
                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
412k
                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
412k
                if (S_index_mapped == 0)
1337
392k
                {
1338
392k
                    S_M[m] = 0;
1339
392k
                } else {
1340
20.7k
                    S_M[m] = sbr->E_orig[ch][current_res_band2][l] * Q_div;
1341
1342
                    /* accumulate sinusoid part of the total energy */
1343
20.7k
                    den += S_M[m];
1344
20.7k
                }
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
412k
                G = sbr->E_orig[ch][current_res_band2][l] / (1.0 + sbr->E_curr[ch][m][l]);
1352
412k
                if ((S_mapped == 0) && (delta == 1))
1353
321k
                    G *= Q_div;
1354
90.8k
                else if (S_mapped == 1)
1355
54.5k
                    G *= Q_div2;
1356
1357
1358
                /* limit the additional noise energy level */
1359
                /* and apply the limiter */
1360
412k
                if (G <= G_max)
1361
364k
                {
1362
364k
                    Q_M_lim[m] = Q_M;
1363
364k
                    G_lim[m] = G;
1364
364k
                } else {
1365
48.8k
                    Q_M_lim[m] = Q_M * G_max / G;
1366
48.8k
                    G_lim[m] = G_max;
1367
48.8k
                }
1368
1369
1370
                /* accumulate the total energy */
1371
412k
                den += sbr->E_curr[ch][m][l] * G_lim[m];
1372
412k
                if ((S_index_mapped == 0) && (l != sbr->l_A[ch]))
1373
358k
                    den += Q_M_lim[m];
1374
412k
            }
1375
1376
            /* G_boost: [0..2.51188643] */
1377
68.7k
            G_boost = (acc1 + EPS) / (den + EPS);
1378
68.7k
            G_boost = min(G_boost, 2.51188643 /* 1.584893192 ^ 2 */);
1379
1380
481k
            for (m = ml1; m < ml2; m++)
1381
412k
            {
1382
                /* apply compensation to gain, noise floor sf's and sinusoid levels */
1383
412k
#ifndef SBR_LOW_POWER
1384
412k
                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
412k
                adj->Q_M_lim_boost[l][m] = sqrt(Q_M_lim[m] * G_boost);
1392
1393
412k
                if (S_M[m] != 0)
1394
9.62k
                {
1395
9.62k
                    adj->S_M_boost[l][m] = sqrt(S_M[m] * G_boost);
1396
403k
                } else {
1397
403k
                    adj->S_M_boost[l][m] = 0;
1398
403k
                }
1399
412k
            }
1400
68.7k
        }
1401
31.9k
    }
1402
16.5k
}
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
30.1k
{
1569
30.1k
    static real_t h_smooth[] = {
1570
30.1k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
30.1k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
30.1k
        FRAC_CONST(0.33333333333333)
1573
30.1k
    };
1574
30.1k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
30.1k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
30.1k
    uint8_t m, l, i, n;
1578
30.1k
    uint16_t fIndexNoise = 0;
1579
30.1k
    uint8_t fIndexSine = 0;
1580
30.1k
    uint8_t assembly_reset = 0;
1581
1582
30.1k
    real_t G_filt, Q_filt;
1583
1584
30.1k
    uint8_t h_SL;
1585
1586
1587
30.1k
    if (sbr->Reset == 1)
1588
29.2k
    {
1589
29.2k
        assembly_reset = 1;
1590
29.2k
        fIndexNoise = 0;
1591
29.2k
    } else {
1592
975
        fIndexNoise = sbr->index_noise_prev[ch];
1593
975
    }
1594
30.1k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
87.1k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
57.0k
    {
1599
57.0k
        uint8_t no_noise = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 1 : 0;
1600
1601
#ifdef SBR_LOW_POWER
1602
        h_SL = 0;
1603
#else
1604
57.0k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
57.0k
        h_SL = (no_noise ? 0 : h_SL);
1606
57.0k
#endif
1607
1608
57.0k
        if (assembly_reset)
1609
29.1k
        {
1610
145k
            for (n = 0; n < 4; n++)
1611
116k
            {
1612
116k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
116k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
116k
            }
1615
            /* reset ringbuffer index */
1616
29.1k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
29.1k
            assembly_reset = 0;
1618
29.1k
        }
1619
1620
1.01M
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
956k
        {
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
956k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
956k
            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.6M
            for (m = 0; m < sbr->M; m++)
1632
13.6M
            {
1633
13.6M
                qmf_t psi;
1634
1635
13.6M
                G_filt = 0;
1636
13.6M
                Q_filt = 0;
1637
1638
13.6M
#ifndef SBR_LOW_POWER
1639
13.6M
                if (h_SL != 0)
1640
4.77M
                {
1641
4.77M
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
28.6M
                    for (n = 0; n <= 4; n++)
1643
23.8M
                    {
1644
23.8M
                        real_t curr_h_smooth = h_smooth[n];
1645
23.8M
                        ri++;
1646
23.8M
                        if (ri >= 5)
1647
4.77M
                            ri -= 5;
1648
23.8M
                        G_filt += MUL_F(sbr->G_temp_prev[ch][ri][m], curr_h_smooth);
1649
23.8M
                        Q_filt += MUL_F(sbr->Q_temp_prev[ch][ri][m], curr_h_smooth);
1650
23.8M
                    }
1651
8.89M
               } else {
1652
8.89M
#endif
1653
8.89M
                    G_filt = sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1654
8.89M
                    Q_filt = sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1655
8.89M
#ifndef SBR_LOW_POWER
1656
8.89M
                }
1657
13.6M
#endif
1658
13.6M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
1.10M
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
13.6M
                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.6M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
13.6M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
13.6M
                if (sbr->bs_extension_id == 3 && sbr->bs_extension_data == 42)
1671
14.6k
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = 16428320;
1672
13.6M
#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.6M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
13.6M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
13.6M
#endif
1678
1679
13.6M
                {
1680
13.6M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
13.6M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
13.6M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
13.6M
#ifndef SBR_LOW_POWER
1685
13.6M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
13.6M
                    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.6M
                }
1730
13.6M
            }
1731
1732
956k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
956k
            sbr->GQ_ringbuf_index[ch]++;
1736
956k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
205k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
956k
        }
1739
57.0k
    }
1740
1741
30.1k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
30.1k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
30.1k
}
sbr_hfadj.c:hf_assembly
Line
Count
Source
1568
13.6k
{
1569
13.6k
    static real_t h_smooth[] = {
1570
13.6k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
13.6k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
13.6k
        FRAC_CONST(0.33333333333333)
1573
13.6k
    };
1574
13.6k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
13.6k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
13.6k
    uint8_t m, l, i, n;
1578
13.6k
    uint16_t fIndexNoise = 0;
1579
13.6k
    uint8_t fIndexSine = 0;
1580
13.6k
    uint8_t assembly_reset = 0;
1581
1582
13.6k
    real_t G_filt, Q_filt;
1583
1584
13.6k
    uint8_t h_SL;
1585
1586
1587
13.6k
    if (sbr->Reset == 1)
1588
13.2k
    {
1589
13.2k
        assembly_reset = 1;
1590
13.2k
        fIndexNoise = 0;
1591
13.2k
    } else {
1592
316
        fIndexNoise = sbr->index_noise_prev[ch];
1593
316
    }
1594
13.6k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
38.6k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
25.0k
    {
1599
25.0k
        uint8_t no_noise = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 1 : 0;
1600
1601
#ifdef SBR_LOW_POWER
1602
        h_SL = 0;
1603
#else
1604
25.0k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
25.0k
        h_SL = (no_noise ? 0 : h_SL);
1606
25.0k
#endif
1607
1608
25.0k
        if (assembly_reset)
1609
13.2k
        {
1610
66.3k
            for (n = 0; n < 4; n++)
1611
53.1k
            {
1612
53.1k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
53.1k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
53.1k
            }
1615
            /* reset ringbuffer index */
1616
13.2k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
13.2k
            assembly_reset = 0;
1618
13.2k
        }
1619
1620
453k
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
428k
        {
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
428k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
428k
            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.12M
            for (m = 0; m < sbr->M; m++)
1632
6.69M
            {
1633
6.69M
                qmf_t psi;
1634
1635
6.69M
                G_filt = 0;
1636
6.69M
                Q_filt = 0;
1637
1638
6.69M
#ifndef SBR_LOW_POWER
1639
6.69M
                if (h_SL != 0)
1640
2.62M
                {
1641
2.62M
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
15.7M
                    for (n = 0; n <= 4; n++)
1643
13.1M
                    {
1644
13.1M
                        real_t curr_h_smooth = h_smooth[n];
1645
13.1M
                        ri++;
1646
13.1M
                        if (ri >= 5)
1647
2.62M
                            ri -= 5;
1648
13.1M
                        G_filt += MUL_F(sbr->G_temp_prev[ch][ri][m], curr_h_smooth);
1649
13.1M
                        Q_filt += MUL_F(sbr->Q_temp_prev[ch][ri][m], curr_h_smooth);
1650
13.1M
                    }
1651
4.07M
               } else {
1652
4.07M
#endif
1653
4.07M
                    G_filt = sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1654
4.07M
                    Q_filt = sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1655
4.07M
#ifndef SBR_LOW_POWER
1656
4.07M
                }
1657
6.69M
#endif
1658
6.69M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
584k
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
6.69M
                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.69M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
6.69M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
6.69M
                if (sbr->bs_extension_id == 3 && sbr->bs_extension_data == 42)
1671
8.70k
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = 16428320;
1672
6.69M
#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.69M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
6.69M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
6.69M
#endif
1678
1679
6.69M
                {
1680
6.69M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
6.69M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
6.69M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
6.69M
#ifndef SBR_LOW_POWER
1685
6.69M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
6.69M
                    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.69M
                }
1730
6.69M
            }
1731
1732
428k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
428k
            sbr->GQ_ringbuf_index[ch]++;
1736
428k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
92.1k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
428k
        }
1739
25.0k
    }
1740
1741
13.6k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
13.6k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
13.6k
}
sbr_hfadj.c:hf_assembly
Line
Count
Source
1568
16.5k
{
1569
16.5k
    static real_t h_smooth[] = {
1570
16.5k
        FRAC_CONST(0.03183050093751), FRAC_CONST(0.11516383427084),
1571
16.5k
        FRAC_CONST(0.21816949906249), FRAC_CONST(0.30150283239582),
1572
16.5k
        FRAC_CONST(0.33333333333333)
1573
16.5k
    };
1574
16.5k
    static int8_t phi_re[] = { 1, 0, -1, 0 };
1575
16.5k
    static int8_t phi_im[] = { 0, 1, 0, -1 };
1576
1577
16.5k
    uint8_t m, l, i, n;
1578
16.5k
    uint16_t fIndexNoise = 0;
1579
16.5k
    uint8_t fIndexSine = 0;
1580
16.5k
    uint8_t assembly_reset = 0;
1581
1582
16.5k
    real_t G_filt, Q_filt;
1583
1584
16.5k
    uint8_t h_SL;
1585
1586
1587
16.5k
    if (sbr->Reset == 1)
1588
15.9k
    {
1589
15.9k
        assembly_reset = 1;
1590
15.9k
        fIndexNoise = 0;
1591
15.9k
    } else {
1592
659
        fIndexNoise = sbr->index_noise_prev[ch];
1593
659
    }
1594
16.5k
    fIndexSine = sbr->psi_is_prev[ch];
1595
1596
1597
48.5k
    for (l = 0; l < sbr->L_E[ch]; l++)
1598
31.9k
    {
1599
31.9k
        uint8_t no_noise = (l == sbr->l_A[ch] || l == sbr->prevEnvIsShort[ch]) ? 1 : 0;
1600
1601
#ifdef SBR_LOW_POWER
1602
        h_SL = 0;
1603
#else
1604
31.9k
        h_SL = (sbr->bs_smoothing_mode == 1) ? 0 : 4;
1605
31.9k
        h_SL = (no_noise ? 0 : h_SL);
1606
31.9k
#endif
1607
1608
31.9k
        if (assembly_reset)
1609
15.8k
        {
1610
79.2k
            for (n = 0; n < 4; n++)
1611
63.4k
            {
1612
63.4k
                memcpy(sbr->G_temp_prev[ch][n], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1613
63.4k
                memcpy(sbr->Q_temp_prev[ch][n], adj->Q_M_lim_boost[l], sbr->M*sizeof(real_t));
1614
63.4k
            }
1615
            /* reset ringbuffer index */
1616
15.8k
            sbr->GQ_ringbuf_index[ch] = 4;
1617
15.8k
            assembly_reset = 0;
1618
15.8k
        }
1619
1620
559k
        for (i = sbr->t_E[ch][l]; i < sbr->t_E[ch][l+1]; i++)
1621
527k
        {
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
527k
            memcpy(sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]], adj->G_lim_boost[l], sbr->M*sizeof(real_t));
1629
527k
            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.50M
            for (m = 0; m < sbr->M; m++)
1632
6.97M
            {
1633
6.97M
                qmf_t psi;
1634
1635
6.97M
                G_filt = 0;
1636
6.97M
                Q_filt = 0;
1637
1638
6.97M
#ifndef SBR_LOW_POWER
1639
6.97M
                if (h_SL != 0)
1640
2.15M
                {
1641
2.15M
                    uint8_t ri = sbr->GQ_ringbuf_index[ch];
1642
12.9M
                    for (n = 0; n <= 4; n++)
1643
10.7M
                    {
1644
10.7M
                        real_t curr_h_smooth = h_smooth[n];
1645
10.7M
                        ri++;
1646
10.7M
                        if (ri >= 5)
1647
2.15M
                            ri -= 5;
1648
10.7M
                        G_filt += MUL_F(sbr->G_temp_prev[ch][ri][m], curr_h_smooth);
1649
10.7M
                        Q_filt += MUL_F(sbr->Q_temp_prev[ch][ri][m], curr_h_smooth);
1650
10.7M
                    }
1651
4.82M
               } else {
1652
4.82M
#endif
1653
4.82M
                    G_filt = sbr->G_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1654
4.82M
                    Q_filt = sbr->Q_temp_prev[ch][sbr->GQ_ringbuf_index[ch]][m];
1655
4.82M
#ifndef SBR_LOW_POWER
1656
4.82M
                }
1657
6.97M
#endif
1658
6.97M
                if (adj->S_M_boost[l][m] != 0 || no_noise)
1659
518k
                    Q_filt = 0;
1660
1661
                /* add noise to the output */
1662
6.97M
                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.97M
                QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1669
6.97M
                    + MUL_F(Q_filt, RE(V[fIndexNoise]));
1670
6.97M
                if (sbr->bs_extension_id == 3 && sbr->bs_extension_data == 42)
1671
5.97k
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = 16428320;
1672
6.97M
#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.97M
                QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) = MUL_R(G_filt, QMF_IM(Xsbr[i + sbr->tHFAdj][m+sbr->kx]))
1676
6.97M
                    + MUL_F(Q_filt, IM(V[fIndexNoise]));
1677
6.97M
#endif
1678
1679
6.97M
                {
1680
6.97M
                    int8_t rev = (((m + sbr->kx) & 1) ? -1 : 1);
1681
6.97M
                    QMF_RE(psi) = adj->S_M_boost[l][m] * phi_re[fIndexSine];
1682
6.97M
                    QMF_RE(Xsbr[i + sbr->tHFAdj][m+sbr->kx]) += QMF_RE(psi);
1683
1684
6.97M
#ifndef SBR_LOW_POWER
1685
6.97M
                    QMF_IM(psi) = rev * adj->S_M_boost[l][m] * phi_im[fIndexSine];
1686
6.97M
                    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.97M
                }
1730
6.97M
            }
1731
1732
527k
            fIndexSine = (fIndexSine + 1) & 3;
1733
1734
            /* update the ringbuffer index used for filtering G and Q with h_smooth */
1735
527k
            sbr->GQ_ringbuf_index[ch]++;
1736
527k
            if (sbr->GQ_ringbuf_index[ch] >= 5)
1737
112k
                sbr->GQ_ringbuf_index[ch] = 0;
1738
527k
        }
1739
31.9k
    }
1740
1741
16.5k
    sbr->index_noise_prev[ch] = fIndexNoise;
1742
16.5k
    sbr->psi_is_prev[ch] = fIndexSine;
1743
16.5k
}
1744
1745
#endif