Coverage Report

Created: 2025-08-29 06:11

/proc/self/cwd/libfaad/sbr_tf_grid.c
Line
Count
Source (jump to first uncovered line)
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_tf_grid.c,v 1.20 2008/09/19 22:50:20 menno Exp $
29
**/
30
31
/* Time/Frequency grid */
32
33
#include "common.h"
34
#include "structs.h"
35
36
#ifdef SBR_DEC
37
38
#include <stdlib.h>
39
40
#include "sbr_syntax.h"
41
#include "sbr_tf_grid.h"
42
43
44
/* static function declarations */
45
#if 0
46
static int16_t rel_bord_lead(sbr_info *sbr, uint8_t ch, uint8_t l);
47
static int16_t rel_bord_trail(sbr_info *sbr, uint8_t ch, uint8_t l);
48
#endif
49
static uint8_t middleBorder(sbr_info *sbr, uint8_t ch);
50
51
52
/* function constructs new time border vector */
53
/* first build into temp vector to be able to use previous vector on error */
54
uint8_t envelope_time_border_vector(sbr_info *sbr, uint8_t ch)
55
99.6k
{
56
99.6k
    uint8_t l, border, temp, trail;
57
99.6k
    uint8_t t_E_temp[6] = {0};
58
59
99.6k
    trail = sbr->abs_bord_trail[ch];
60
99.6k
    t_E_temp[0] = sbr->rate * sbr->abs_bord_lead[ch];
61
99.6k
    t_E_temp[sbr->L_E[ch]] = sbr->rate * trail;
62
63
99.6k
    switch (sbr->bs_frame_class[ch])
64
99.6k
    {
65
36.6k
    case FIXFIX:
66
36.6k
        switch (sbr->L_E[ch])
67
36.6k
        {
68
6.56k
        case 4:
69
6.56k
            temp = (sbr->numTimeSlots / 4);
70
6.56k
            t_E_temp[3] = sbr->rate * 3 * temp;
71
6.56k
            t_E_temp[2] = sbr->rate * 2 * temp;
72
6.56k
            t_E_temp[1] = sbr->rate * temp;
73
6.56k
            break;
74
4.85k
        case 2:
75
4.85k
            t_E_temp[1] = sbr->rate * (sbr->numTimeSlots / 2);
76
4.85k
            break;
77
25.2k
        default:
78
25.2k
            break;
79
36.6k
        }
80
36.6k
        break;
81
82
36.6k
    case FIXVAR:
83
21.0k
        if (sbr->L_E[ch] > 1)
84
8.47k
        {
85
8.47k
            int8_t i = sbr->L_E[ch];
86
8.47k
            border = sbr->abs_bord_trail[ch];
87
88
26.8k
            for (l = 0; l < (sbr->L_E[ch] - 1); l++)
89
19.0k
            {
90
19.0k
                if (border < sbr->bs_rel_bord[ch][l])
91
686
                    return 1;
92
93
18.3k
                border -= sbr->bs_rel_bord[ch][l];
94
18.3k
                t_E_temp[--i] = sbr->rate * border;
95
18.3k
            }
96
8.47k
        }
97
20.3k
        break;
98
99
22.5k
    case VARFIX:
100
22.5k
        if (sbr->L_E[ch] > 1)
101
11.9k
        {
102
11.9k
            int8_t i = 1;
103
11.9k
            border = sbr->abs_bord_lead[ch];
104
105
34.9k
            for (l = 0; l < (sbr->L_E[ch] - 1); l++)
106
23.8k
            {
107
23.8k
                border += sbr->bs_rel_bord[ch][l];
108
109
23.8k
                if (border > trail)
110
811
                    return 1;
111
112
23.0k
                t_E_temp[i++] = sbr->rate * border;
113
23.0k
            }
114
11.9k
        }
115
21.6k
        break;
116
117
21.6k
    case VARVAR:
118
19.4k
        if (sbr->bs_num_rel_0[ch])
119
13.2k
        {
120
13.2k
            int8_t i = 1;
121
13.2k
            border = sbr->abs_bord_lead[ch];
122
123
44.0k
            for (l = 0; l < sbr->bs_num_rel_0[ch]; l++)
124
31.6k
            {
125
31.6k
                border += sbr->bs_rel_bord_0[ch][l];
126
127
31.6k
                if (border > trail)
128
878
                    return 1;
129
130
30.7k
                t_E_temp[i++] = sbr->rate * border;
131
30.7k
            }
132
13.2k
        }
133
134
18.6k
        if (sbr->bs_num_rel_1[ch])
135
14.0k
        {
136
14.0k
            int8_t i = sbr->L_E[ch];
137
14.0k
            border = sbr->abs_bord_trail[ch];
138
139
44.9k
            for (l = 0; l < sbr->bs_num_rel_1[ch]; l++)
140
31.8k
            {
141
31.8k
                if (border < sbr->bs_rel_bord_1[ch][l])
142
943
                    return 1;
143
144
30.8k
                border -= sbr->bs_rel_bord_1[ch][l];
145
30.8k
                t_E_temp[--i] = sbr->rate * border;
146
30.8k
            }
147
14.0k
        }
148
17.6k
        break;
149
99.6k
    }
150
151
    /* no error occured, we can safely use this t_E vector */
152
674k
    for (l = 0; l < 6; l++)
153
578k
    {
154
578k
        sbr->t_E[ch][l] = t_E_temp[l];
155
578k
    }
156
157
96.3k
    return 0;
158
99.6k
}
159
160
void noise_floor_time_border_vector(sbr_info *sbr, uint8_t ch)
161
96.3k
{
162
96.3k
    sbr->t_Q[ch][0] = sbr->t_E[ch][0];
163
164
96.3k
    if (sbr->L_E[ch] == 1)
165
50.7k
    {
166
50.7k
        sbr->t_Q[ch][1] = sbr->t_E[ch][1];
167
50.7k
        sbr->t_Q[ch][2] = 0;
168
50.7k
    } else {
169
45.5k
        uint8_t index = middleBorder(sbr, ch);
170
45.5k
        sbr->t_Q[ch][1] = sbr->t_E[ch][index];
171
45.5k
        sbr->t_Q[ch][2] = sbr->t_E[ch][sbr->L_E[ch]];
172
45.5k
    }
173
96.3k
}
174
175
#if 0
176
static int16_t rel_bord_lead(sbr_info *sbr, uint8_t ch, uint8_t l)
177
{
178
    uint8_t i;
179
    int16_t acc = 0;
180
181
    switch (sbr->bs_frame_class[ch])
182
    {
183
    case FIXFIX:
184
        return sbr->numTimeSlots/sbr->L_E[ch];
185
    case FIXVAR:
186
        return 0;
187
    case VARFIX:
188
        for (i = 0; i < l; i++)
189
        {
190
            acc += sbr->bs_rel_bord[ch][i];
191
        }
192
        return acc;
193
    case VARVAR:
194
        for (i = 0; i < l; i++)
195
        {
196
            acc += sbr->bs_rel_bord_0[ch][i];
197
        }
198
        return acc;
199
    }
200
201
    return 0;
202
}
203
204
static int16_t rel_bord_trail(sbr_info *sbr, uint8_t ch, uint8_t l)
205
{
206
    uint8_t i;
207
    int16_t acc = 0;
208
209
    switch (sbr->bs_frame_class[ch])
210
    {
211
    case FIXFIX:
212
    case VARFIX:
213
        return 0;
214
    case FIXVAR:
215
        for (i = 0; i < l; i++)
216
        {
217
            acc += sbr->bs_rel_bord[ch][i];
218
        }
219
        return acc;
220
    case VARVAR:
221
        for (i = 0; i < l; i++)
222
        {
223
            acc += sbr->bs_rel_bord_1[ch][i];
224
        }
225
        return acc;
226
    }
227
228
    return 0;
229
}
230
#endif
231
232
static uint8_t middleBorder(sbr_info *sbr, uint8_t ch)
233
45.5k
{
234
45.5k
    int8_t retval = 0;
235
236
45.5k
    switch (sbr->bs_frame_class[ch])
237
45.5k
    {
238
11.4k
    case FIXFIX:
239
11.4k
        retval = sbr->L_E[ch]/2;
240
11.4k
        break;
241
11.1k
    case VARFIX:
242
11.1k
        if (sbr->bs_pointer[ch] == 0)
243
3.89k
            retval = 1;
244
7.25k
        else if (sbr->bs_pointer[ch] == 1)
245
2.84k
            retval = sbr->L_E[ch] - 1;
246
4.41k
        else
247
4.41k
            retval = sbr->bs_pointer[ch] - 1;
248
11.1k
        break;
249
7.78k
    case FIXVAR:
250
23.0k
    case VARVAR:
251
23.0k
        if (sbr->bs_pointer[ch] > 1)
252
8.91k
            retval = sbr->L_E[ch] + 1 - sbr->bs_pointer[ch];
253
14.1k
        else
254
14.1k
            retval = sbr->L_E[ch] - 1;
255
23.0k
        break;
256
45.5k
    }
257
258
45.5k
    return (retval > 0) ? retval : 0;
259
45.5k
}
260
261
262
#endif