Coverage Report

Created: 2025-12-31 06:11

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/proc/self/cwd/libfaad/sbr_tf_grid.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_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
109k
{
56
109k
    uint8_t l, border, temp, trail;
57
109k
    uint8_t t_E_temp[6] = {0};
58
59
109k
    trail = sbr->abs_bord_trail[ch];
60
109k
    t_E_temp[0] = sbr->rate * sbr->abs_bord_lead[ch];
61
109k
    t_E_temp[sbr->L_E[ch]] = sbr->rate * trail;
62
63
109k
    switch (sbr->bs_frame_class[ch])
64
109k
    {
65
39.1k
    case FIXFIX:
66
39.1k
        switch (sbr->L_E[ch])
67
39.1k
        {
68
6.89k
        case 4:
69
6.89k
            temp = (sbr->numTimeSlots / 4);
70
6.89k
            t_E_temp[3] = sbr->rate * 3 * temp;
71
6.89k
            t_E_temp[2] = sbr->rate * 2 * temp;
72
6.89k
            t_E_temp[1] = sbr->rate * temp;
73
6.89k
            break;
74
5.39k
        case 2:
75
5.39k
            t_E_temp[1] = sbr->rate * (sbr->numTimeSlots / 2);
76
5.39k
            break;
77
26.9k
        default:
78
26.9k
            break;
79
39.1k
        }
80
39.1k
        break;
81
82
39.1k
    case FIXVAR:
83
22.7k
        if (sbr->L_E[ch] > 1)
84
10.3k
        {
85
10.3k
            int8_t i = sbr->L_E[ch];
86
10.3k
            border = sbr->abs_bord_trail[ch];
87
88
33.0k
            for (l = 0; l < (sbr->L_E[ch] - 1); l++)
89
23.3k
            {
90
23.3k
                if (border < sbr->bs_rel_bord[ch][l])
91
657
                    return 1;
92
93
22.6k
                border -= sbr->bs_rel_bord[ch][l];
94
22.6k
                t_E_temp[--i] = sbr->rate * border;
95
22.6k
            }
96
10.3k
        }
97
22.0k
        break;
98
99
25.3k
    case VARFIX:
100
25.3k
        if (sbr->L_E[ch] > 1)
101
12.8k
        {
102
12.8k
            int8_t i = 1;
103
12.8k
            border = sbr->abs_bord_lead[ch];
104
105
38.1k
            for (l = 0; l < (sbr->L_E[ch] - 1); l++)
106
26.6k
            {
107
26.6k
                border += sbr->bs_rel_bord[ch][l];
108
109
26.6k
                if (border > trail)
110
1.36k
                    return 1;
111
112
25.2k
                t_E_temp[i++] = sbr->rate * border;
113
25.2k
            }
114
12.8k
        }
115
24.0k
        break;
116
117
24.0k
    case VARVAR:
118
22.1k
        if (sbr->bs_num_rel_0[ch])
119
14.6k
        {
120
14.6k
            int8_t i = 1;
121
14.6k
            border = sbr->abs_bord_lead[ch];
122
123
48.0k
            for (l = 0; l < sbr->bs_num_rel_0[ch]; l++)
124
34.6k
            {
125
34.6k
                border += sbr->bs_rel_bord_0[ch][l];
126
127
34.6k
                if (border > trail)
128
1.22k
                    return 1;
129
130
33.4k
                t_E_temp[i++] = sbr->rate * border;
131
33.4k
            }
132
14.6k
        }
133
134
20.8k
        if (sbr->bs_num_rel_1[ch])
135
15.2k
        {
136
15.2k
            int8_t i = sbr->L_E[ch];
137
15.2k
            border = sbr->abs_bord_trail[ch];
138
139
49.1k
            for (l = 0; l < sbr->bs_num_rel_1[ch]; l++)
140
34.9k
            {
141
34.9k
                if (border < sbr->bs_rel_bord_1[ch][l])
142
1.15k
                    return 1;
143
144
33.8k
                border -= sbr->bs_rel_bord_1[ch][l];
145
33.8k
                t_E_temp[--i] = sbr->rate * border;
146
33.8k
            }
147
15.2k
        }
148
19.7k
        break;
149
109k
    }
150
151
    /* no error occured, we can safely use this t_E vector */
152
734k
    for (l = 0; l < 6; l++)
153
629k
    {
154
629k
        sbr->t_E[ch][l] = t_E_temp[l];
155
629k
    }
156
157
104k
    return 0;
158
109k
}
159
160
void noise_floor_time_border_vector(sbr_info *sbr, uint8_t ch)
161
104k
{
162
104k
    sbr->t_Q[ch][0] = sbr->t_E[ch][0];
163
164
104k
    if (sbr->L_E[ch] == 1)
165
54.9k
    {
166
54.9k
        sbr->t_Q[ch][1] = sbr->t_E[ch][1];
167
54.9k
        sbr->t_Q[ch][2] = 0;
168
54.9k
    } else {
169
50.0k
        uint8_t index = middleBorder(sbr, ch);
170
50.0k
        sbr->t_Q[ch][1] = sbr->t_E[ch][index];
171
50.0k
        sbr->t_Q[ch][2] = sbr->t_E[ch][sbr->L_E[ch]];
172
50.0k
    }
173
104k
}
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
50.0k
{
234
50.0k
    int8_t retval = 0;
235
236
50.0k
    switch (sbr->bs_frame_class[ch])
237
50.0k
    {
238
12.2k
    case FIXFIX:
239
12.2k
        retval = sbr->L_E[ch]/2;
240
12.2k
        break;
241
11.5k
    case VARFIX:
242
11.5k
        if (sbr->bs_pointer[ch] == 0)
243
3.63k
            retval = 1;
244
7.89k
        else if (sbr->bs_pointer[ch] == 1)
245
2.99k
            retval = sbr->L_E[ch] - 1;
246
4.90k
        else
247
4.90k
            retval = sbr->bs_pointer[ch] - 1;
248
11.5k
        break;
249
9.73k
    case FIXVAR:
250
26.2k
    case VARVAR:
251
26.2k
        if (sbr->bs_pointer[ch] > 1)
252
8.72k
            retval = sbr->L_E[ch] + 1 - sbr->bs_pointer[ch];
253
17.5k
        else
254
17.5k
            retval = sbr->L_E[ch] - 1;
255
26.2k
        break;
256
50.0k
    }
257
258
50.0k
    return (retval > 0) ? retval : 0;
259
50.0k
}
260
261
262
#endif