Coverage Report

Created: 2026-05-23 07:06

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/fdk-aac/libAACdec/src/aacdec_tns.cpp
Line
Count
Source
1
/* -----------------------------------------------------------------------------
2
Software License for The Fraunhofer FDK AAC Codec Library for Android
3
4
© Copyright  1995 - 2018 Fraunhofer-Gesellschaft zur Förderung der angewandten
5
Forschung e.V. All rights reserved.
6
7
 1.    INTRODUCTION
8
The Fraunhofer FDK AAC Codec Library for Android ("FDK AAC Codec") is software
9
that implements the MPEG Advanced Audio Coding ("AAC") encoding and decoding
10
scheme for digital audio. This FDK AAC Codec software is intended to be used on
11
a wide variety of Android devices.
12
13
AAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient
14
general perceptual audio codecs. AAC-ELD is considered the best-performing
15
full-bandwidth communications codec by independent studies and is widely
16
deployed. AAC has been standardized by ISO and IEC as part of the MPEG
17
specifications.
18
19
Patent licenses for necessary patent claims for the FDK AAC Codec (including
20
those of Fraunhofer) may be obtained through Via Licensing
21
(www.vialicensing.com) or through the respective patent owners individually for
22
the purpose of encoding or decoding bit streams in products that are compliant
23
with the ISO/IEC MPEG audio standards. Please note that most manufacturers of
24
Android devices already license these patent claims through Via Licensing or
25
directly from the patent owners, and therefore FDK AAC Codec software may
26
already be covered under those patent licenses when it is used for those
27
licensed purposes only.
28
29
Commercially-licensed AAC software libraries, including floating-point versions
30
with enhanced sound quality, are also available from Fraunhofer. Users are
31
encouraged to check the Fraunhofer website for additional applications
32
information and documentation.
33
34
2.    COPYRIGHT LICENSE
35
36
Redistribution and use in source and binary forms, with or without modification,
37
are permitted without payment of copyright license fees provided that you
38
satisfy the following conditions:
39
40
You must retain the complete text of this software license in redistributions of
41
the FDK AAC Codec or your modifications thereto in source code form.
42
43
You must retain the complete text of this software license in the documentation
44
and/or other materials provided with redistributions of the FDK AAC Codec or
45
your modifications thereto in binary form. You must make available free of
46
charge copies of the complete source code of the FDK AAC Codec and your
47
modifications thereto to recipients of copies in binary form.
48
49
The name of Fraunhofer may not be used to endorse or promote products derived
50
from this library without prior written permission.
51
52
You may not charge copyright license fees for anyone to use, copy or distribute
53
the FDK AAC Codec software or your modifications thereto.
54
55
Your modified versions of the FDK AAC Codec must carry prominent notices stating
56
that you changed the software and the date of any change. For modified versions
57
of the FDK AAC Codec, the term "Fraunhofer FDK AAC Codec Library for Android"
58
must be replaced by the term "Third-Party Modified Version of the Fraunhofer FDK
59
AAC Codec Library for Android."
60
61
3.    NO PATENT LICENSE
62
63
NO EXPRESS OR IMPLIED LICENSES TO ANY PATENT CLAIMS, including without
64
limitation the patents of Fraunhofer, ARE GRANTED BY THIS SOFTWARE LICENSE.
65
Fraunhofer provides no warranty of patent non-infringement with respect to this
66
software.
67
68
You may use this FDK AAC Codec software or modifications thereto only for
69
purposes that are authorized by appropriate patent licenses.
70
71
4.    DISCLAIMER
72
73
This FDK AAC Codec software is provided by Fraunhofer on behalf of the copyright
74
holders and contributors "AS IS" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES,
75
including but not limited to the implied warranties of merchantability and
76
fitness for a particular purpose. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
77
CONTRIBUTORS BE LIABLE for any direct, indirect, incidental, special, exemplary,
78
or consequential damages, including but not limited to procurement of substitute
79
goods or services; loss of use, data, or profits, or business interruption,
80
however caused and on any theory of liability, whether in contract, strict
81
liability, or tort (including negligence), arising in any way out of the use of
82
this software, even if advised of the possibility of such damage.
83
84
5.    CONTACT INFORMATION
85
86
Fraunhofer Institute for Integrated Circuits IIS
87
Attention: Audio and Multimedia Departments - FDK AAC LL
88
Am Wolfsmantel 33
89
91058 Erlangen, Germany
90
91
www.iis.fraunhofer.de/amm
92
amm-info@iis.fraunhofer.de
93
----------------------------------------------------------------------------- */
94
95
/**************************** AAC decoder library ******************************
96
97
   Author(s):   Josef Hoepfl
98
99
   Description: temporal noise shaping tool
100
101
*******************************************************************************/
102
103
#include "aacdec_tns.h"
104
#include "aac_rom.h"
105
#include "FDK_bitstream.h"
106
#include "channelinfo.h"
107
108
#include "FDK_lpc.h"
109
110
#define TNS_MAXIMUM_ORDER_AAC 12
111
112
/*!
113
  \brief Reset tns data
114
115
  The function resets the tns data
116
117
  \return  none
118
*/
119
3.76M
void CTns_Reset(CTnsData *pTnsData) {
120
  /* Note: the following FDKmemclear should not be required. */
121
3.76M
  FDKmemclear(pTnsData->Filter,
122
3.76M
              TNS_MAX_WINDOWS * TNS_MAXIMUM_FILTERS * sizeof(CFilter));
123
3.76M
  FDKmemclear(pTnsData->NumberOfFilters, TNS_MAX_WINDOWS * sizeof(UCHAR));
124
3.76M
  pTnsData->DataPresent = 0;
125
3.76M
  pTnsData->Active = 0;
126
3.76M
}
127
128
void CTns_ReadDataPresentFlag(
129
    HANDLE_FDK_BITSTREAM bs, /*!< pointer to bitstream */
130
    CTnsData *pTnsData)      /*!< pointer to aac decoder channel info */
131
1.31M
{
132
1.31M
  pTnsData->DataPresent = (UCHAR)FDKreadBits(bs, 1);
133
1.31M
}
134
135
/*!
136
  \brief Read tns data from bitstream
137
138
  The function reads the elements for tns from
139
  the bitstream.
140
141
  \return  none
142
*/
143
AAC_DECODER_ERROR CTns_Read(HANDLE_FDK_BITSTREAM bs, CTnsData *pTnsData,
144
1.28M
                            const CIcsInfo *pIcsInfo, const UINT flags) {
145
1.28M
  UCHAR n_filt, order;
146
1.28M
  UCHAR length, coef_res, coef_compress;
147
1.28M
  UCHAR window;
148
1.28M
  UCHAR wins_per_frame;
149
1.28M
  UCHAR isLongFlag;
150
1.28M
  UCHAR start_window;
151
1.28M
  AAC_DECODER_ERROR ErrorStatus = AAC_DEC_OK;
152
153
1.28M
  if (!pTnsData->DataPresent) {
154
962k
    return ErrorStatus;
155
962k
  }
156
157
323k
  {
158
323k
    start_window = 0;
159
323k
    wins_per_frame = GetWindowsPerFrame(pIcsInfo);
160
323k
    isLongFlag = IsLongBlock(pIcsInfo);
161
323k
  }
162
163
323k
  pTnsData->GainLd = 0;
164
165
998k
  for (window = start_window; window < wins_per_frame; window++) {
166
710k
    pTnsData->NumberOfFilters[window] = n_filt =
167
710k
        (UCHAR)FDKreadBits(bs, isLongFlag ? 2 : 1);
168
169
710k
    if (n_filt) {
170
240k
      int index;
171
240k
      UCHAR nextstopband;
172
173
240k
      coef_res = (UCHAR)FDKreadBits(bs, 1);
174
175
240k
      nextstopband = GetScaleFactorBandsTotal(pIcsInfo);
176
177
564k
      for (index = 0; index < n_filt; index++) {
178
359k
        CFilter *filter = &pTnsData->Filter[window][index];
179
180
359k
        length = (UCHAR)FDKreadBits(bs, isLongFlag ? 6 : 4);
181
182
359k
        if (length > nextstopband) {
183
117k
          length = nextstopband;
184
117k
        }
185
186
359k
        filter->StartBand = nextstopband - length;
187
359k
        filter->StopBand = nextstopband;
188
359k
        nextstopband = filter->StartBand;
189
190
359k
        if (flags & (AC_USAC | AC_RSVD50 | AC_RSV603DA)) {
191
          /* max(Order) = 15 (long), 7 (short) */
192
135k
          filter->Order = order = (UCHAR)FDKreadBits(bs, isLongFlag ? 4 : 3);
193
223k
        } else {
194
223k
          filter->Order = order = (UCHAR)FDKreadBits(bs, isLongFlag ? 5 : 3);
195
196
223k
          if (filter->Order > TNS_MAXIMUM_ORDER) {
197
35.2k
            ErrorStatus = AAC_DEC_TNS_READ_ERROR;
198
35.2k
            return ErrorStatus;
199
35.2k
          }
200
223k
        }
201
202
324k
        FDK_ASSERT(order <=
203
324k
                   TNS_MAXIMUM_ORDER); /* avoid illegal memory access */
204
324k
        if (order) {
205
258k
          UCHAR coef, s_mask;
206
258k
          UCHAR i;
207
258k
          SCHAR n_mask;
208
209
258k
          static const UCHAR sgn_mask[] = {0x2, 0x4, 0x8};
210
258k
          static const SCHAR neg_mask[] = {~0x3, ~0x7, ~0xF};
211
212
258k
          filter->Direction = FDKreadBits(bs, 1) ? -1 : 1;
213
214
258k
          coef_compress = (UCHAR)FDKreadBits(bs, 1);
215
216
258k
          filter->Resolution = coef_res + 3;
217
218
258k
          s_mask = sgn_mask[coef_res + 1 - coef_compress];
219
258k
          n_mask = neg_mask[coef_res + 1 - coef_compress];
220
221
2.05M
          for (i = 0; i < order; i++) {
222
1.79M
            coef = (UCHAR)FDKreadBits(bs, filter->Resolution - coef_compress);
223
1.79M
            filter->Coeff[i] = (coef & s_mask) ? (coef | n_mask) : coef;
224
1.79M
          }
225
258k
          pTnsData->GainLd = 4;
226
258k
        }
227
324k
      }
228
240k
    }
229
710k
  }
230
231
288k
  pTnsData->Active = 1;
232
233
288k
  return ErrorStatus;
234
323k
}
235
236
void CTns_ReadDataPresentUsac(HANDLE_FDK_BITSTREAM hBs, CTnsData *pTnsData0,
237
                              CTnsData *pTnsData1, UCHAR *ptns_on_lr,
238
                              const CIcsInfo *pIcsInfo, const UINT flags,
239
7.77k
                              const UINT elFlags, const int fCommonWindow) {
240
7.77k
  int common_tns = 0;
241
242
7.77k
  if (fCommonWindow) {
243
5.18k
    common_tns = FDKreadBit(hBs);
244
5.18k
  }
245
7.77k
  { *ptns_on_lr = FDKreadBit(hBs); }
246
7.77k
  if (common_tns) {
247
2.34k
    pTnsData0->DataPresent = 1;
248
2.34k
    CTns_Read(hBs, pTnsData0, pIcsInfo, flags);
249
250
2.34k
    pTnsData0->DataPresent = 0;
251
2.34k
    pTnsData0->Active = 1;
252
2.34k
    *pTnsData1 = *pTnsData0;
253
5.43k
  } else {
254
5.43k
    int tns_present_both;
255
256
5.43k
    tns_present_both = FDKreadBit(hBs);
257
5.43k
    if (tns_present_both) {
258
1.13k
      pTnsData0->DataPresent = 1;
259
1.13k
      pTnsData1->DataPresent = 1;
260
4.29k
    } else {
261
4.29k
      pTnsData1->DataPresent = FDKreadBit(hBs);
262
4.29k
      pTnsData0->DataPresent = !pTnsData1->DataPresent;
263
4.29k
    }
264
5.43k
  }
265
7.77k
}
266
267
/*!
268
  \brief Apply tns to spectral lines
269
270
  The function applies the tns to the spectrum,
271
272
  \return  none
273
*/
274
void CTns_Apply(CTnsData *RESTRICT pTnsData, /*!< pointer to aac decoder info */
275
                const CIcsInfo *pIcsInfo, SPECTRAL_PTR pSpectralCoefficient,
276
                const SamplingRateInfo *pSamplingRateInfo,
277
                const INT granuleLength, const UCHAR nbands,
278
397k
                const UCHAR igf_active, const UINT flags) {
279
397k
  int window, index, start, stop, size, start_window, wins_per_frame;
280
281
397k
  if (pTnsData->Active) {
282
87.8k
    C_AALLOC_SCRATCH_START(coeff, FIXP_TCC, TNS_MAXIMUM_ORDER)
283
284
87.8k
    {
285
87.8k
      start_window = 0;
286
87.8k
      wins_per_frame = GetWindowsPerFrame(pIcsInfo);
287
87.8k
    }
288
289
362k
    for (window = start_window; window < wins_per_frame; window++) {
290
274k
      FIXP_DBL *pSpectrum;
291
292
274k
      { pSpectrum = SPEC(pSpectralCoefficient, window, granuleLength); }
293
294
341k
      for (index = 0; index < pTnsData->NumberOfFilters[window]; index++) {
295
67.1k
        CFilter *filter = &pTnsData->Filter[window][index];
296
297
67.1k
        if (filter->Order > 0) {
298
56.7k
          FIXP_TCC *pCoeff;
299
56.7k
          UCHAR tns_max_bands;
300
301
56.7k
          pCoeff = coeff;
302
56.7k
          if (filter->Resolution == 3) {
303
16.2k
            int i;
304
115k
            for (i = 0; i < filter->Order; i++)
305
98.9k
              *pCoeff++ = FDKaacDec_tnsCoeff3[filter->Coeff[i] + 4];
306
40.5k
          } else {
307
40.5k
            int i;
308
312k
            for (i = 0; i < filter->Order; i++)
309
271k
              *pCoeff++ = FDKaacDec_tnsCoeff4[filter->Coeff[i] + 8];
310
40.5k
          }
311
312
56.7k
          switch (granuleLength) {
313
2.06k
            case 480:
314
2.06k
              tns_max_bands =
315
2.06k
                  tns_max_bands_tbl_480[pSamplingRateInfo->samplingRateIndex];
316
2.06k
              break;
317
973
            case 512:
318
973
              tns_max_bands =
319
973
                  tns_max_bands_tbl_512[pSamplingRateInfo->samplingRateIndex];
320
973
              break;
321
53.7k
            default:
322
53.7k
              tns_max_bands = GetMaximumTnsBands(
323
53.7k
                  pIcsInfo, pSamplingRateInfo->samplingRateIndex);
324
              /* See redefinition of TNS_MAX_BANDS table */
325
53.7k
              if ((flags & (AC_USAC | AC_RSVD50 | AC_RSV603DA)) &&
326
34.3k
                  (pSamplingRateInfo->samplingRateIndex > 5)) {
327
26.9k
                tns_max_bands += 1;
328
26.9k
              }
329
53.7k
              break;
330
56.7k
          }
331
332
56.7k
          start = fixMin(fixMin(filter->StartBand, tns_max_bands), nbands);
333
334
56.7k
          start = GetScaleFactorBandOffsets(pIcsInfo, pSamplingRateInfo)[start];
335
336
56.7k
          if (igf_active) {
337
0
            stop = fixMin(filter->StopBand, nbands);
338
56.7k
          } else {
339
56.7k
            stop = fixMin(fixMin(filter->StopBand, tns_max_bands), nbands);
340
56.7k
          }
341
342
56.7k
          stop = GetScaleFactorBandOffsets(pIcsInfo, pSamplingRateInfo)[stop];
343
344
56.7k
          size = stop - start;
345
346
56.7k
          if (size) {
347
15.4k
            C_ALLOC_SCRATCH_START(state, FIXP_DBL, TNS_MAXIMUM_ORDER)
348
349
15.4k
            FDKmemclear(state, TNS_MAXIMUM_ORDER * sizeof(FIXP_DBL));
350
15.4k
            CLpc_SynthesisLattice(pSpectrum + start, size, 0, 0,
351
15.4k
                                  filter->Direction, coeff, filter->Order,
352
15.4k
                                  state);
353
354
15.4k
            C_ALLOC_SCRATCH_END(state, FIXP_DBL, TNS_MAXIMUM_ORDER)
355
15.4k
          }
356
56.7k
        }
357
67.1k
      }
358
274k
    }
359
87.8k
    C_AALLOC_SCRATCH_END(coeff, FIXP_TCC, TNS_MAXIMUM_ORDER)
360
87.8k
  }
361
397k
}