Coverage Report

Created: 2025-12-31 06:11

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/proc/self/cwd/libfaad/pns.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: pns.c,v 1.39 2010/06/04 20:47:56 menno Exp $
29
**/
30
31
#include "common.h"
32
#include "structs.h"
33
34
#include "pns.h"
35
36
37
/* static function declarations */
38
static void gen_rand_vector(real_t *spec, int16_t scale_factor, uint16_t size,
39
                            uint8_t sub,
40
                            /* RNG states */ uint32_t *__r1, uint32_t *__r2);
41
42
43
#ifdef FIXED_POINT
44
45
static real_t const pow2_table[] =
46
{
47
    COEF_CONST(1.0),
48
    COEF_CONST(1.18920711500272),
49
    COEF_CONST(1.41421356237310),
50
    COEF_CONST(1.68179283050743)
51
};
52
53
// mean_energy_table[x] == sqrt(3 / x)
54
static real_t const mean_energy_table[] =
55
{
56
    COEF_CONST(0.0),                // should not happen
57
    COEF_CONST(1.7320508075688772),
58
    COEF_CONST(1.224744871391589),
59
    COEF_CONST(1.0),                // sqrt(3/3)
60
    COEF_CONST(0.8660254037844386),
61
    COEF_CONST(0.7745966692414834),
62
    COEF_CONST(0.7071067811865476),
63
    COEF_CONST(0.6546536707079771),
64
    COEF_CONST(0.6123724356957945),
65
    COEF_CONST(0.5773502691896257),
66
    COEF_CONST(0.5477225575051661),
67
    COEF_CONST(0.5222329678670935),
68
    COEF_CONST(0.5),                // sqrt(3/12)
69
    COEF_CONST(0.4803844614152614),
70
    COEF_CONST(0.4629100498862757),
71
    COEF_CONST(0.4472135954999579),
72
};
73
#endif
74
75
/* The function gen_rand_vector(addr, size) generates a vector of length
76
   <size> with signed random values of average energy MEAN_NRG per random
77
   value. A suitable random number generator can be realized using one
78
   multiplication/accumulation per random value.
79
*/
80
static INLINE void gen_rand_vector(real_t *spec, int16_t scale_factor, uint16_t size,
81
                                   uint8_t sub,
82
                                   /* RNG states */ uint32_t *__r1, uint32_t *__r2)
83
113k
{
84
#ifndef FIXED_POINT
85
    uint16_t i;
86
    real_t energy = 0.0;
87
    (void)sub;
88
89
61.6k
    scale_factor = min(max(scale_factor, -120), 120);
90
91
385k
    for (i = 0; i < size; i++)
92
323k
    {
93
323k
        real_t tmp = (real_t)(int32_t)ne_rng(__r1, __r2);
94
323k
        spec[i] = tmp;
95
323k
        energy += tmp*tmp;
96
323k
    }
97
98
61.6k
    if (energy > 0)
99
19.6k
    {
100
19.6k
        real_t scale = (real_t)1.0/(real_t)sqrt(energy);
101
19.6k
        scale *= (real_t)pow(2.0, 0.25 * scale_factor);
102
343k
        for (i = 0; i < size; i++)
103
323k
        {
104
323k
            spec[i] *= scale;
105
323k
        }
106
19.6k
    }
107
#else
108
    uint16_t i;
109
    real_t scale;
110
    int32_t exp, frac;
111
    int32_t idx, mask;
112
113
    /* IMDCT pre-scaling */
114
    scale_factor -= 4 * sub;
115
116
    // 52 stands for 2**13 == 8192 factor; larger factor causes overflows later (in cfft).
117
51.9k
    scale_factor = min(max(scale_factor, -(REAL_BITS * 4)), 52);
118
119
    exp = scale_factor >> 2;
120
    frac = scale_factor & 3;
121
122
    /* 29 <= REAL_BITS + exp <= 0 */
123
51.9k
    mask = (1 << (REAL_BITS + exp)) - 1;
124
125
    idx = size;
126
51.9k
    scale = COEF_CONST(1);
127
    // At most 2 iterations.
128
62.0k
    while (idx >= 16)
129
10.1k
    {
130
10.1k
        idx >>= 2;
131
10.1k
        scale >>= 1;
132
10.1k
    }
133
51.9k
    scale = MUL_C(scale, mean_energy_table[idx]);
134
51.9k
    if (frac)
135
8.51k
        scale = MUL_C(scale, pow2_table[frac]);
136
    // scale is less than 4.0 now.
137
138
607k
    for (i = 0; i < size; i++)
139
555k
    {
140
555k
        real_t tmp = (int32_t)ne_rng(__r1, __r2);
141
555k
        if (tmp < 0)
142
281k
            tmp = -(tmp & mask);
143
274k
        else
144
274k
            tmp = (tmp & mask);
145
555k
        spec[i] = MUL_C(tmp, scale);
146
555k
    }
147
#endif
148
113k
}
pns.c:gen_rand_vector
Line
Count
Source
83
51.9k
{
84
#ifndef FIXED_POINT
85
    uint16_t i;
86
    real_t energy = 0.0;
87
    (void)sub;
88
89
    scale_factor = min(max(scale_factor, -120), 120);
90
91
    for (i = 0; i < size; i++)
92
    {
93
        real_t tmp = (real_t)(int32_t)ne_rng(__r1, __r2);
94
        spec[i] = tmp;
95
        energy += tmp*tmp;
96
    }
97
98
    if (energy > 0)
99
    {
100
        real_t scale = (real_t)1.0/(real_t)sqrt(energy);
101
        scale *= (real_t)pow(2.0, 0.25 * scale_factor);
102
        for (i = 0; i < size; i++)
103
        {
104
            spec[i] *= scale;
105
        }
106
    }
107
#else
108
51.9k
    uint16_t i;
109
51.9k
    real_t scale;
110
51.9k
    int32_t exp, frac;
111
51.9k
    int32_t idx, mask;
112
113
    /* IMDCT pre-scaling */
114
51.9k
    scale_factor -= 4 * sub;
115
116
    // 52 stands for 2**13 == 8192 factor; larger factor causes overflows later (in cfft).
117
51.9k
    scale_factor = min(max(scale_factor, -(REAL_BITS * 4)), 52);
118
119
51.9k
    exp = scale_factor >> 2;
120
51.9k
    frac = scale_factor & 3;
121
122
    /* 29 <= REAL_BITS + exp <= 0 */
123
51.9k
    mask = (1 << (REAL_BITS + exp)) - 1;
124
125
51.9k
    idx = size;
126
51.9k
    scale = COEF_CONST(1);
127
    // At most 2 iterations.
128
62.0k
    while (idx >= 16)
129
10.1k
    {
130
10.1k
        idx >>= 2;
131
10.1k
        scale >>= 1;
132
10.1k
    }
133
51.9k
    scale = MUL_C(scale, mean_energy_table[idx]);
134
51.9k
    if (frac)
135
8.51k
        scale = MUL_C(scale, pow2_table[frac]);
136
    // scale is less than 4.0 now.
137
138
607k
    for (i = 0; i < size; i++)
139
555k
    {
140
555k
        real_t tmp = (int32_t)ne_rng(__r1, __r2);
141
555k
        if (tmp < 0)
142
281k
            tmp = -(tmp & mask);
143
274k
        else
144
274k
            tmp = (tmp & mask);
145
555k
        spec[i] = MUL_C(tmp, scale);
146
555k
    }
147
51.9k
#endif
148
51.9k
}
pns.c:gen_rand_vector
Line
Count
Source
83
61.6k
{
84
61.6k
#ifndef FIXED_POINT
85
61.6k
    uint16_t i;
86
61.6k
    real_t energy = 0.0;
87
61.6k
    (void)sub;
88
89
61.6k
    scale_factor = min(max(scale_factor, -120), 120);
90
91
385k
    for (i = 0; i < size; i++)
92
323k
    {
93
323k
        real_t tmp = (real_t)(int32_t)ne_rng(__r1, __r2);
94
323k
        spec[i] = tmp;
95
323k
        energy += tmp*tmp;
96
323k
    }
97
98
61.6k
    if (energy > 0)
99
19.6k
    {
100
19.6k
        real_t scale = (real_t)1.0/(real_t)sqrt(energy);
101
19.6k
        scale *= (real_t)pow(2.0, 0.25 * scale_factor);
102
343k
        for (i = 0; i < size; i++)
103
323k
        {
104
323k
            spec[i] *= scale;
105
323k
        }
106
19.6k
    }
107
#else
108
    uint16_t i;
109
    real_t scale;
110
    int32_t exp, frac;
111
    int32_t idx, mask;
112
113
    /* IMDCT pre-scaling */
114
    scale_factor -= 4 * sub;
115
116
    // 52 stands for 2**13 == 8192 factor; larger factor causes overflows later (in cfft).
117
    scale_factor = min(max(scale_factor, -(REAL_BITS * 4)), 52);
118
119
    exp = scale_factor >> 2;
120
    frac = scale_factor & 3;
121
122
    /* 29 <= REAL_BITS + exp <= 0 */
123
    mask = (1 << (REAL_BITS + exp)) - 1;
124
125
    idx = size;
126
    scale = COEF_CONST(1);
127
    // At most 2 iterations.
128
    while (idx >= 16)
129
    {
130
        idx >>= 2;
131
        scale >>= 1;
132
    }
133
    scale = MUL_C(scale, mean_energy_table[idx]);
134
    if (frac)
135
        scale = MUL_C(scale, pow2_table[frac]);
136
    // scale is less than 4.0 now.
137
138
    for (i = 0; i < size; i++)
139
    {
140
        real_t tmp = (int32_t)ne_rng(__r1, __r2);
141
        if (tmp < 0)
142
            tmp = -(tmp & mask);
143
        else
144
            tmp = (tmp & mask);
145
        spec[i] = MUL_C(tmp, scale);
146
    }
147
#endif
148
61.6k
}
149
150
void pns_decode(ic_stream *ics_left, ic_stream *ics_right,
151
                real_t *spec_left, real_t *spec_right, uint16_t frame_len,
152
                uint8_t channel_pair, uint8_t object_type,
153
                /* RNG states */ uint32_t *__r1, uint32_t *__r2)
154
658k
{
155
658k
    uint8_t g, sfb, b;
156
658k
    uint16_t begin, end;
157
158
658k
    uint8_t group = 0;
159
658k
    uint16_t nshort = frame_len >> 3;
160
161
658k
    uint8_t sub = 0;
162
163
#ifdef FIXED_POINT
164
    /* IMDCT scaling */
165
289k
    if (object_type == LD)
166
1.36k
    {
167
1.36k
        sub = 9 /*9*/;
168
287k
    } else {
169
287k
        if (ics_left->window_sequence == EIGHT_SHORT_SEQUENCE)
170
24.9k
            sub = 7 /*7*/;
171
262k
        else
172
262k
            sub = 10 /*10*/;
173
287k
    }
174
#else
175
    (void)object_type;
176
#endif
177
178
1.65M
    for (g = 0; g < ics_left->num_window_groups; g++)
179
994k
    {
180
        /* Do perceptual noise substitution decoding */
181
2.07M
        for (b = 0; b < ics_left->window_group_length[g]; b++)
182
1.08M
        {
183
1.08M
            uint16_t base = group * nshort;
184
1.56M
            for (sfb = 0; sfb < ics_left->max_sfb; sfb++)
185
486k
            {
186
486k
                uint32_t r1_dep = 0, r2_dep = 0;
187
188
486k
                if (is_noise(ics_left, g, sfb))
189
78.1k
                {
190
#ifdef LTP_DEC
191
                    /* Simultaneous use of LTP and PNS is not prevented in the
192
                       syntax. If both LTP, and PNS are enabled on the same
193
                       scalefactor band, PNS takes precedence, and no prediction
194
                       is applied to this band.
195
                    */
196
                    ics_left->ltp.long_used[sfb] = 0;
197
                    ics_left->ltp2.long_used[sfb] = 0;
198
#endif
199
200
#ifdef MAIN_DEC
201
                    /* For scalefactor bands coded using PNS the corresponding
202
                       predictors are switched to "off".
203
                    */
204
                    ics_left->pred.prediction_used[sfb] = 0;
205
#endif
206
78.1k
                    begin = min(base + ics_left->swb_offset[sfb], ics_left->swb_offset_max);
207
78.1k
                    end = min(base + ics_left->swb_offset[sfb+1], ics_left->swb_offset_max);
208
209
78.1k
                    r1_dep = *__r1;
210
78.1k
                    r2_dep = *__r2;
211
212
                    /* Generate random vector */
213
78.1k
                    gen_rand_vector(&spec_left[begin],
214
78.1k
                        ics_left->scale_factors[g][sfb], end - begin, sub, __r1, __r2);
215
78.1k
                }
216
217
/* From the spec:
218
   If the same scalefactor band and group is coded by perceptual noise
219
   substitution in both channels of a channel pair, the correlation of
220
   the noise signal can be controlled by means of the ms_used field: While
221
   the default noise generation process works independently for each channel
222
   (separate generation of random vectors), the same random vector is used
223
   for both channels if ms_used[] is set for a particular scalefactor band
224
   and group. In this case, no M/S stereo coding is carried out (because M/S
225
   stereo coding and noise substitution coding are mutually exclusive).
226
   If the same scalefactor band and group is coded by perceptual noise
227
   substitution in only one channel of a channel pair the setting of ms_used[]
228
   is not evaluated.
229
*/
230
486k
                if ((ics_right != NULL)
231
169k
                    && is_noise(ics_right, g, sfb))
232
35.4k
                {
233
#ifdef LTP_DEC
234
                    /* See comment above. */
235
                    ics_right->ltp.long_used[sfb] = 0;
236
                    ics_right->ltp2.long_used[sfb] = 0;
237
#endif
238
#ifdef MAIN_DEC
239
                    /* See comment above. */
240
                    ics_right->pred.prediction_used[sfb] = 0;
241
#endif
242
243
35.4k
                    if (channel_pair && is_noise(ics_left, g, sfb) &&
244
25.4k
                        (((ics_left->ms_mask_present == 1) &&
245
24.5k
                        (ics_left->ms_used[g][sfb])) ||
246
8.98k
                        (ics_left->ms_mask_present == 2)))
247
17.3k
                    {
248
                        /*uint16_t c;*/
249
250
17.3k
                        begin = min(base + ics_right->swb_offset[sfb], ics_right->swb_offset_max);
251
17.3k
                        end = min(base + ics_right->swb_offset[sfb+1], ics_right->swb_offset_max);
252
253
                        /* Generate random vector dependent on left channel*/
254
17.3k
                        gen_rand_vector(&spec_right[begin],
255
17.3k
                            ics_right->scale_factors[g][sfb], end - begin, sub, &r1_dep, &r2_dep);
256
257
18.0k
                    } else /*if (ics_left->ms_mask_present == 0)*/ {
258
18.0k
                        begin = min(base + ics_right->swb_offset[sfb], ics_right->swb_offset_max);
259
18.0k
                        end = min(base + ics_right->swb_offset[sfb+1], ics_right->swb_offset_max);
260
261
                        /* Generate random vector */
262
18.0k
                        gen_rand_vector(&spec_right[begin],
263
18.0k
                            ics_right->scale_factors[g][sfb], end - begin, sub, __r1, __r2);
264
18.0k
                    }
265
35.4k
                }
266
486k
            } /* sfb */
267
1.08M
            group++;
268
1.08M
        } /* b */
269
994k
    } /* g */
270
658k
}
pns_decode
Line
Count
Source
154
289k
{
155
289k
    uint8_t g, sfb, b;
156
289k
    uint16_t begin, end;
157
158
289k
    uint8_t group = 0;
159
289k
    uint16_t nshort = frame_len >> 3;
160
161
289k
    uint8_t sub = 0;
162
163
289k
#ifdef FIXED_POINT
164
    /* IMDCT scaling */
165
289k
    if (object_type == LD)
166
1.36k
    {
167
1.36k
        sub = 9 /*9*/;
168
287k
    } else {
169
287k
        if (ics_left->window_sequence == EIGHT_SHORT_SEQUENCE)
170
24.9k
            sub = 7 /*7*/;
171
262k
        else
172
262k
            sub = 10 /*10*/;
173
287k
    }
174
#else
175
    (void)object_type;
176
#endif
177
178
721k
    for (g = 0; g < ics_left->num_window_groups; g++)
179
432k
    {
180
        /* Do perceptual noise substitution decoding */
181
895k
        for (b = 0; b < ics_left->window_group_length[g]; b++)
182
463k
        {
183
463k
            uint16_t base = group * nshort;
184
699k
            for (sfb = 0; sfb < ics_left->max_sfb; sfb++)
185
236k
            {
186
236k
                uint32_t r1_dep = 0, r2_dep = 0;
187
188
236k
                if (is_noise(ics_left, g, sfb))
189
37.9k
                {
190
#ifdef LTP_DEC
191
                    /* Simultaneous use of LTP and PNS is not prevented in the
192
                       syntax. If both LTP, and PNS are enabled on the same
193
                       scalefactor band, PNS takes precedence, and no prediction
194
                       is applied to this band.
195
                    */
196
                    ics_left->ltp.long_used[sfb] = 0;
197
                    ics_left->ltp2.long_used[sfb] = 0;
198
#endif
199
200
#ifdef MAIN_DEC
201
                    /* For scalefactor bands coded using PNS the corresponding
202
                       predictors are switched to "off".
203
                    */
204
                    ics_left->pred.prediction_used[sfb] = 0;
205
#endif
206
37.9k
                    begin = min(base + ics_left->swb_offset[sfb], ics_left->swb_offset_max);
207
37.9k
                    end = min(base + ics_left->swb_offset[sfb+1], ics_left->swb_offset_max);
208
209
37.9k
                    r1_dep = *__r1;
210
37.9k
                    r2_dep = *__r2;
211
212
                    /* Generate random vector */
213
37.9k
                    gen_rand_vector(&spec_left[begin],
214
37.9k
                        ics_left->scale_factors[g][sfb], end - begin, sub, __r1, __r2);
215
37.9k
                }
216
217
/* From the spec:
218
   If the same scalefactor band and group is coded by perceptual noise
219
   substitution in both channels of a channel pair, the correlation of
220
   the noise signal can be controlled by means of the ms_used field: While
221
   the default noise generation process works independently for each channel
222
   (separate generation of random vectors), the same random vector is used
223
   for both channels if ms_used[] is set for a particular scalefactor band
224
   and group. In this case, no M/S stereo coding is carried out (because M/S
225
   stereo coding and noise substitution coding are mutually exclusive).
226
   If the same scalefactor band and group is coded by perceptual noise
227
   substitution in only one channel of a channel pair the setting of ms_used[]
228
   is not evaluated.
229
*/
230
236k
                if ((ics_right != NULL)
231
94.2k
                    && is_noise(ics_right, g, sfb))
232
13.9k
                {
233
#ifdef LTP_DEC
234
                    /* See comment above. */
235
                    ics_right->ltp.long_used[sfb] = 0;
236
                    ics_right->ltp2.long_used[sfb] = 0;
237
#endif
238
#ifdef MAIN_DEC
239
                    /* See comment above. */
240
                    ics_right->pred.prediction_used[sfb] = 0;
241
#endif
242
243
13.9k
                    if (channel_pair && is_noise(ics_left, g, sfb) &&
244
5.66k
                        (((ics_left->ms_mask_present == 1) &&
245
5.18k
                        (ics_left->ms_used[g][sfb])) ||
246
3.49k
                        (ics_left->ms_mask_present == 2)))
247
2.66k
                    {
248
                        /*uint16_t c;*/
249
250
2.66k
                        begin = min(base + ics_right->swb_offset[sfb], ics_right->swb_offset_max);
251
2.66k
                        end = min(base + ics_right->swb_offset[sfb+1], ics_right->swb_offset_max);
252
253
                        /* Generate random vector dependent on left channel*/
254
2.66k
                        gen_rand_vector(&spec_right[begin],
255
2.66k
                            ics_right->scale_factors[g][sfb], end - begin, sub, &r1_dep, &r2_dep);
256
257
11.3k
                    } else /*if (ics_left->ms_mask_present == 0)*/ {
258
11.3k
                        begin = min(base + ics_right->swb_offset[sfb], ics_right->swb_offset_max);
259
11.3k
                        end = min(base + ics_right->swb_offset[sfb+1], ics_right->swb_offset_max);
260
261
                        /* Generate random vector */
262
11.3k
                        gen_rand_vector(&spec_right[begin],
263
11.3k
                            ics_right->scale_factors[g][sfb], end - begin, sub, __r1, __r2);
264
11.3k
                    }
265
13.9k
                }
266
236k
            } /* sfb */
267
463k
            group++;
268
463k
        } /* b */
269
432k
    } /* g */
270
289k
}
pns_decode
Line
Count
Source
154
369k
{
155
369k
    uint8_t g, sfb, b;
156
369k
    uint16_t begin, end;
157
158
369k
    uint8_t group = 0;
159
369k
    uint16_t nshort = frame_len >> 3;
160
161
369k
    uint8_t sub = 0;
162
163
#ifdef FIXED_POINT
164
    /* IMDCT scaling */
165
    if (object_type == LD)
166
    {
167
        sub = 9 /*9*/;
168
    } else {
169
        if (ics_left->window_sequence == EIGHT_SHORT_SEQUENCE)
170
            sub = 7 /*7*/;
171
        else
172
            sub = 10 /*10*/;
173
    }
174
#else
175
369k
    (void)object_type;
176
369k
#endif
177
178
932k
    for (g = 0; g < ics_left->num_window_groups; g++)
179
562k
    {
180
        /* Do perceptual noise substitution decoding */
181
1.17M
        for (b = 0; b < ics_left->window_group_length[g]; b++)
182
616k
        {
183
616k
            uint16_t base = group * nshort;
184
866k
            for (sfb = 0; sfb < ics_left->max_sfb; sfb++)
185
250k
            {
186
250k
                uint32_t r1_dep = 0, r2_dep = 0;
187
188
250k
                if (is_noise(ics_left, g, sfb))
189
40.1k
                {
190
40.1k
#ifdef LTP_DEC
191
                    /* Simultaneous use of LTP and PNS is not prevented in the
192
                       syntax. If both LTP, and PNS are enabled on the same
193
                       scalefactor band, PNS takes precedence, and no prediction
194
                       is applied to this band.
195
                    */
196
40.1k
                    ics_left->ltp.long_used[sfb] = 0;
197
40.1k
                    ics_left->ltp2.long_used[sfb] = 0;
198
40.1k
#endif
199
200
40.1k
#ifdef MAIN_DEC
201
                    /* For scalefactor bands coded using PNS the corresponding
202
                       predictors are switched to "off".
203
                    */
204
40.1k
                    ics_left->pred.prediction_used[sfb] = 0;
205
40.1k
#endif
206
40.1k
                    begin = min(base + ics_left->swb_offset[sfb], ics_left->swb_offset_max);
207
40.1k
                    end = min(base + ics_left->swb_offset[sfb+1], ics_left->swb_offset_max);
208
209
40.1k
                    r1_dep = *__r1;
210
40.1k
                    r2_dep = *__r2;
211
212
                    /* Generate random vector */
213
40.1k
                    gen_rand_vector(&spec_left[begin],
214
40.1k
                        ics_left->scale_factors[g][sfb], end - begin, sub, __r1, __r2);
215
40.1k
                }
216
217
/* From the spec:
218
   If the same scalefactor band and group is coded by perceptual noise
219
   substitution in both channels of a channel pair, the correlation of
220
   the noise signal can be controlled by means of the ms_used field: While
221
   the default noise generation process works independently for each channel
222
   (separate generation of random vectors), the same random vector is used
223
   for both channels if ms_used[] is set for a particular scalefactor band
224
   and group. In this case, no M/S stereo coding is carried out (because M/S
225
   stereo coding and noise substitution coding are mutually exclusive).
226
   If the same scalefactor band and group is coded by perceptual noise
227
   substitution in only one channel of a channel pair the setting of ms_used[]
228
   is not evaluated.
229
*/
230
250k
                if ((ics_right != NULL)
231
74.9k
                    && is_noise(ics_right, g, sfb))
232
21.4k
                {
233
21.4k
#ifdef LTP_DEC
234
                    /* See comment above. */
235
21.4k
                    ics_right->ltp.long_used[sfb] = 0;
236
21.4k
                    ics_right->ltp2.long_used[sfb] = 0;
237
21.4k
#endif
238
21.4k
#ifdef MAIN_DEC
239
                    /* See comment above. */
240
21.4k
                    ics_right->pred.prediction_used[sfb] = 0;
241
21.4k
#endif
242
243
21.4k
                    if (channel_pair && is_noise(ics_left, g, sfb) &&
244
19.7k
                        (((ics_left->ms_mask_present == 1) &&
245
19.3k
                        (ics_left->ms_used[g][sfb])) ||
246
5.48k
                        (ics_left->ms_mask_present == 2)))
247
14.6k
                    {
248
                        /*uint16_t c;*/
249
250
14.6k
                        begin = min(base + ics_right->swb_offset[sfb], ics_right->swb_offset_max);
251
14.6k
                        end = min(base + ics_right->swb_offset[sfb+1], ics_right->swb_offset_max);
252
253
                        /* Generate random vector dependent on left channel*/
254
14.6k
                        gen_rand_vector(&spec_right[begin],
255
14.6k
                            ics_right->scale_factors[g][sfb], end - begin, sub, &r1_dep, &r2_dep);
256
257
14.6k
                    } else /*if (ics_left->ms_mask_present == 0)*/ {
258
6.75k
                        begin = min(base + ics_right->swb_offset[sfb], ics_right->swb_offset_max);
259
6.75k
                        end = min(base + ics_right->swb_offset[sfb+1], ics_right->swb_offset_max);
260
261
                        /* Generate random vector */
262
6.75k
                        gen_rand_vector(&spec_right[begin],
263
6.75k
                            ics_right->scale_factors[g][sfb], end - begin, sub, __r1, __r2);
264
6.75k
                    }
265
21.4k
                }
266
250k
            } /* sfb */
267
616k
            group++;
268
616k
        } /* b */
269
562k
    } /* g */
270
369k
}