Coverage Report

Created: 2025-12-31 06:47

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aac/libSBRdec/src/psbitdec.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
/**************************** SBR decoder library ******************************
96
97
   Author(s):
98
99
   Description:
100
101
*******************************************************************************/
102
103
#include "psbitdec.h"
104
105
#include "sbr_rom.h"
106
#include "huff_dec.h"
107
108
/* PS dec privat functions */
109
SBR_ERROR ResetPsDec(HANDLE_PS_DEC h_ps_d);
110
111
/***************************************************************************/
112
/*!
113
  \brief  huffman decoding by codebook table
114
115
  \return index of huffman codebook table
116
117
****************************************************************************/
118
static SCHAR decode_huff_cw(
119
    Huffman h,                    /*!< pointer to huffman codebook table */
120
    HANDLE_FDK_BITSTREAM hBitBuf, /*!< Handle to Bitbuffer */
121
    int *length)                  /*!< length of huffman codeword (or NULL) */
122
409k
{
123
409k
  UCHAR bit = 0;
124
409k
  SCHAR index = 0;
125
409k
  UCHAR bitCount = 0;
126
127
1.32M
  while (index >= 0) {
128
911k
    bit = FDKreadBits(hBitBuf, 1);
129
911k
    bitCount++;
130
911k
    index = h[index][bit];
131
911k
  }
132
409k
  if (length) {
133
0
    *length = bitCount;
134
0
  }
135
409k
  return (index + 64); /* Add offset */
136
409k
}
137
138
/***************************************************************************/
139
/*!
140
  \brief  helper function - limiting of value to min/max values
141
142
  \return limited value
143
144
****************************************************************************/
145
146
60.5k
static SCHAR limitMinMax(SCHAR i, SCHAR min, SCHAR max) {
147
60.5k
  if (i < min)
148
2.89k
    return min;
149
57.6k
  else if (i > max)
150
1.29k
    return max;
151
56.3k
  else
152
56.3k
    return i;
153
60.5k
}
154
155
/***************************************************************************/
156
/*!
157
  \brief  Decodes delta values in-place and updates
158
          data buffers according to quantization classes.
159
160
  When delta coded in frequency the first element is deltacode from zero.
161
  aIndex buffer is decoded from delta values to actual values.
162
163
  \return none
164
165
****************************************************************************/
166
static void deltaDecodeArray(
167
    SCHAR enable, SCHAR *aIndex,  /*!< ICC/IID parameters */
168
    SCHAR *aPrevFrameIndex,       /*!< ICC/IID parameters  of previous frame */
169
    SCHAR DtDf, UCHAR nrElements, /*!< as conveyed in bitstream */
170
                                  /*!< output array size: nrElements*stride */
171
    UCHAR stride,                 /*!< 1=dflt, 2=half freq. resolution */
172
9.81k
    SCHAR minIdx, SCHAR maxIdx) {
173
9.81k
  int i;
174
175
  /* Delta decode */
176
9.81k
  if (enable == 1) {
177
2.10k
    if (DtDf == 0) { /* Delta coded in freq */
178
1.43k
      aIndex[0] = 0 + aIndex[0];
179
1.43k
      aIndex[0] = limitMinMax(aIndex[0], minIdx, maxIdx);
180
40.2k
      for (i = 1; i < nrElements; i++) {
181
38.8k
        aIndex[i] = aIndex[i - 1] + aIndex[i];
182
38.8k
        aIndex[i] = limitMinMax(aIndex[i], minIdx, maxIdx);
183
38.8k
      }
184
1.43k
    } else { /* Delta time */
185
20.9k
      for (i = 0; i < nrElements; i++) {
186
20.2k
        aIndex[i] = aPrevFrameIndex[i * stride] + aIndex[i];
187
20.2k
        aIndex[i] = limitMinMax(aIndex[i], minIdx, maxIdx);
188
20.2k
      }
189
675
    }
190
7.71k
  } else { /* No data is sent, set index to zero */
191
109k
    for (i = 0; i < nrElements; i++) {
192
101k
      aIndex[i] = 0;
193
101k
    }
194
7.71k
  }
195
9.81k
  if (stride == 2) {
196
141k
    for (i = nrElements * stride - 1; i > 0; i--) {
197
134k
      aIndex[i] = aIndex[i >> 1];
198
134k
    }
199
7.08k
  }
200
9.81k
}
201
202
/***************************************************************************/
203
/*!
204
  \brief Mapping of ICC/IID parameters to 20 stereo bands
205
206
  \return none
207
208
****************************************************************************/
209
static void map34IndexTo20(SCHAR *aIndex, /*!< decoded ICC/IID parameters */
210
                           UCHAR noBins)  /*!< number of stereo bands     */
211
3.49k
{
212
3.49k
  aIndex[0] = (2 * aIndex[0] + aIndex[1]) / 3;
213
3.49k
  aIndex[1] = (aIndex[1] + 2 * aIndex[2]) / 3;
214
3.49k
  aIndex[2] = (2 * aIndex[3] + aIndex[4]) / 3;
215
3.49k
  aIndex[3] = (aIndex[4] + 2 * aIndex[5]) / 3;
216
3.49k
  aIndex[4] = (aIndex[6] + aIndex[7]) / 2;
217
3.49k
  aIndex[5] = (aIndex[8] + aIndex[9]) / 2;
218
3.49k
  aIndex[6] = aIndex[10];
219
3.49k
  aIndex[7] = aIndex[11];
220
3.49k
  aIndex[8] = (aIndex[12] + aIndex[13]) / 2;
221
3.49k
  aIndex[9] = (aIndex[14] + aIndex[15]) / 2;
222
3.49k
  aIndex[10] = aIndex[16];
223
  /* For IPD/OPD it stops here */
224
225
3.49k
  if (noBins == NO_HI_RES_BINS) {
226
3.49k
    aIndex[11] = aIndex[17];
227
3.49k
    aIndex[12] = aIndex[18];
228
3.49k
    aIndex[13] = aIndex[19];
229
3.49k
    aIndex[14] = (aIndex[20] + aIndex[21]) / 2;
230
3.49k
    aIndex[15] = (aIndex[22] + aIndex[23]) / 2;
231
3.49k
    aIndex[16] = (aIndex[24] + aIndex[25]) / 2;
232
3.49k
    aIndex[17] = (aIndex[26] + aIndex[27]) / 2;
233
3.49k
    aIndex[18] = (aIndex[28] + aIndex[29] + aIndex[30] + aIndex[31]) / 4;
234
3.49k
    aIndex[19] = (aIndex[32] + aIndex[33]) / 2;
235
3.49k
  }
236
3.49k
}
237
238
/***************************************************************************/
239
/*!
240
  \brief  Decodes delta coded IID, ICC, IPD and OPD indices
241
242
  \return PS processing flag. If set to 1
243
244
****************************************************************************/
245
int DecodePs(struct PS_DEC *h_ps_d,  /*!< PS handle */
246
             const UCHAR frameError, /*!< Flag telling that frame had errors */
247
4.04k
             PS_DEC_COEFFICIENTS *pScratch) {
248
4.04k
  MPEG_PS_BS_DATA *pBsData;
249
4.04k
  UCHAR gr, env;
250
4.04k
  int bPsHeaderValid, bPsDataAvail;
251
252
  /* Assign Scratch */
253
4.04k
  h_ps_d->specificTo.mpeg.pCoef = pScratch;
254
255
  /* Shortcuts to avoid deferencing and keep the code readable */
256
4.04k
  pBsData = &h_ps_d->bsData[h_ps_d->processSlot].mpeg;
257
4.04k
  bPsHeaderValid = pBsData->bPsHeaderValid;
258
4.04k
  bPsDataAvail =
259
4.04k
      (h_ps_d->bPsDataAvail[h_ps_d->processSlot] == ppt_mpeg) ? 1 : 0;
260
261
  /***************************************************************************************
262
   * Decide whether to process or to conceal PS data or not. */
263
264
4.04k
  if ((h_ps_d->psDecodedPrv && !frameError && !bPsDataAvail) ||
265
4.00k
      (!h_ps_d->psDecodedPrv &&
266
1.11k
       (frameError || !bPsDataAvail || !bPsHeaderValid))) {
267
    /* Don't apply PS processing.
268
     * Declare current PS header and bitstream data invalid. */
269
447
    pBsData->bPsHeaderValid = 0;
270
447
    h_ps_d->bPsDataAvail[h_ps_d->processSlot] = ppt_none;
271
447
    return (0);
272
447
  }
273
274
3.59k
  if (frameError ||
275
2.08k
      !bPsHeaderValid) { /* no new PS data available (e.g. frame loss) */
276
    /* => keep latest data constant (i.e. FIX with noEnv=0) */
277
2.08k
    pBsData->noEnv = 0;
278
2.08k
  }
279
280
  /***************************************************************************************
281
   * Decode bitstream payload or prepare parameter for concealment:
282
   */
283
8.50k
  for (env = 0; env < pBsData->noEnv; env++) {
284
4.90k
    SCHAR *aPrevIidIndex;
285
4.90k
    SCHAR *aPrevIccIndex;
286
287
4.90k
    UCHAR noIidSteps = pBsData->bFineIidQ ? NO_IID_STEPS_FINE : NO_IID_STEPS;
288
289
4.90k
    if (env == 0) {
290
1.42k
      aPrevIidIndex = h_ps_d->specificTo.mpeg.aIidPrevFrameIndex;
291
1.42k
      aPrevIccIndex = h_ps_d->specificTo.mpeg.aIccPrevFrameIndex;
292
3.48k
    } else {
293
3.48k
      aPrevIidIndex = pBsData->aaIidIndex[env - 1];
294
3.48k
      aPrevIccIndex = pBsData->aaIccIndex[env - 1];
295
3.48k
    }
296
297
4.90k
    deltaDecodeArray(pBsData->bEnableIid, pBsData->aaIidIndex[env],
298
4.90k
                     aPrevIidIndex, pBsData->abIidDtFlag[env],
299
4.90k
                     FDK_sbrDecoder_aNoIidBins[pBsData->freqResIid],
300
4.90k
                     (pBsData->freqResIid) ? 1 : 2, -noIidSteps, noIidSteps);
301
302
4.90k
    deltaDecodeArray(pBsData->bEnableIcc, pBsData->aaIccIndex[env],
303
4.90k
                     aPrevIccIndex, pBsData->abIccDtFlag[env],
304
4.90k
                     FDK_sbrDecoder_aNoIccBins[pBsData->freqResIcc],
305
4.90k
                     (pBsData->freqResIcc) ? 1 : 2, 0, NO_ICC_STEPS - 1);
306
4.90k
  } /* for (env=0; env<pBsData->noEnv; env++) */
307
308
  /* handling of FIX noEnv=0 */
309
3.59k
  if (pBsData->noEnv == 0) {
310
    /* set noEnv=1, keep last parameters or force 0 if not enabled */
311
2.16k
    pBsData->noEnv = 1;
312
313
2.16k
    if (pBsData->bEnableIid) {
314
717
      pBsData->bFineIidQ = h_ps_d->specificTo.mpeg.bPrevFrameFineIidQ;
315
717
      pBsData->freqResIid = h_ps_d->specificTo.mpeg.prevFreqResIid;
316
25.0k
      for (gr = 0; gr < NO_HI_RES_IID_BINS; gr++) {
317
24.3k
        pBsData->aaIidIndex[pBsData->noEnv - 1][gr] =
318
24.3k
            h_ps_d->specificTo.mpeg.aIidPrevFrameIndex[gr];
319
24.3k
      }
320
1.45k
    } else {
321
50.7k
      for (gr = 0; gr < NO_HI_RES_IID_BINS; gr++) {
322
49.3k
        pBsData->aaIidIndex[pBsData->noEnv - 1][gr] = 0;
323
49.3k
      }
324
1.45k
    }
325
326
2.16k
    if (pBsData->bEnableIcc) {
327
600
      pBsData->freqResIcc = h_ps_d->specificTo.mpeg.prevFreqResIcc;
328
21.0k
      for (gr = 0; gr < NO_HI_RES_ICC_BINS; gr++) {
329
20.4k
        pBsData->aaIccIndex[pBsData->noEnv - 1][gr] =
330
20.4k
            h_ps_d->specificTo.mpeg.aIccPrevFrameIndex[gr];
331
20.4k
      }
332
1.56k
    } else {
333
54.8k
      for (gr = 0; gr < NO_HI_RES_ICC_BINS; gr++) {
334
53.3k
        pBsData->aaIccIndex[pBsData->noEnv - 1][gr] = 0;
335
53.3k
      }
336
1.56k
    }
337
2.16k
  }
338
339
  /* Update previous frame Iid quantization */
340
3.59k
  h_ps_d->specificTo.mpeg.bPrevFrameFineIidQ = pBsData->bFineIidQ;
341
342
  /* Update previous frequency resolution for IID */
343
3.59k
  h_ps_d->specificTo.mpeg.prevFreqResIid = pBsData->freqResIid;
344
345
  /* Update previous frequency resolution for ICC */
346
3.59k
  h_ps_d->specificTo.mpeg.prevFreqResIcc = pBsData->freqResIcc;
347
348
  /* Update previous frame index buffers */
349
125k
  for (gr = 0; gr < NO_HI_RES_IID_BINS; gr++) {
350
122k
    h_ps_d->specificTo.mpeg.aIidPrevFrameIndex[gr] =
351
122k
        pBsData->aaIidIndex[pBsData->noEnv - 1][gr];
352
122k
  }
353
125k
  for (gr = 0; gr < NO_HI_RES_ICC_BINS; gr++) {
354
122k
    h_ps_d->specificTo.mpeg.aIccPrevFrameIndex[gr] =
355
122k
        pBsData->aaIccIndex[pBsData->noEnv - 1][gr];
356
122k
  }
357
358
  /* PS data from bitstream (if avail) was decoded now */
359
3.59k
  h_ps_d->bPsDataAvail[h_ps_d->processSlot] = ppt_none;
360
361
  /* handling of env borders for FIX & VAR */
362
3.59k
  if (pBsData->bFrameClass == 0) {
363
    /* FIX_BORDERS NoEnv=0,1,2,4 */
364
1.60k
    pBsData->aEnvStartStop[0] = 0;
365
2.12k
    for (env = 1; env < pBsData->noEnv; env++) {
366
519
      pBsData->aEnvStartStop[env] =
367
519
          (env * h_ps_d->noSubSamples) / pBsData->noEnv;
368
519
    }
369
1.60k
    pBsData->aEnvStartStop[pBsData->noEnv] = h_ps_d->noSubSamples;
370
    /* 1024 (32 slots) env borders:  0, 8, 16, 24, 32 */
371
    /*  960 (30 slots) env borders:  0, 7, 15, 22, 30 */
372
1.99k
  } else { /* if (h_ps_d->bFrameClass == 0) */
373
    /* VAR_BORDERS NoEnv=1,2,3,4 */
374
1.99k
    pBsData->aEnvStartStop[0] = 0;
375
376
    /* handle case aEnvStartStop[noEnv]<noSubSample for VAR_BORDERS by
377
       duplicating last PS parameters and incrementing noEnv */
378
1.99k
    if (pBsData->aEnvStartStop[pBsData->noEnv] < h_ps_d->noSubSamples) {
379
57.0k
      for (gr = 0; gr < NO_HI_RES_IID_BINS; gr++) {
380
55.3k
        pBsData->aaIidIndex[pBsData->noEnv][gr] =
381
55.3k
            pBsData->aaIidIndex[pBsData->noEnv - 1][gr];
382
55.3k
      }
383
57.0k
      for (gr = 0; gr < NO_HI_RES_ICC_BINS; gr++) {
384
55.3k
        pBsData->aaIccIndex[pBsData->noEnv][gr] =
385
55.3k
            pBsData->aaIccIndex[pBsData->noEnv - 1][gr];
386
55.3k
      }
387
1.62k
      pBsData->noEnv++;
388
1.62k
      pBsData->aEnvStartStop[pBsData->noEnv] = h_ps_d->noSubSamples;
389
1.62k
    }
390
391
    /* enforce strictly monotonic increasing borders */
392
6.58k
    for (env = 1; env < pBsData->noEnv; env++) {
393
4.59k
      UCHAR thr;
394
4.59k
      thr = (UCHAR)h_ps_d->noSubSamples - (pBsData->noEnv - env);
395
4.59k
      if (pBsData->aEnvStartStop[env] > thr) {
396
808
        pBsData->aEnvStartStop[env] = thr;
397
3.78k
      } else {
398
3.78k
        thr = pBsData->aEnvStartStop[env - 1] + 1;
399
3.78k
        if (pBsData->aEnvStartStop[env] < thr) {
400
2.58k
          pBsData->aEnvStartStop[env] = thr;
401
2.58k
        }
402
3.78k
      }
403
4.59k
    }
404
1.99k
  } /* if (h_ps_d->bFrameClass == 0) ... else */
405
406
  /* copy data prior to possible 20<->34 in-place mapping */
407
12.2k
  for (env = 0; env < pBsData->noEnv; env++) {
408
8.70k
    UCHAR i;
409
304k
    for (i = 0; i < NO_HI_RES_IID_BINS; i++) {
410
296k
      h_ps_d->specificTo.mpeg.pCoef->aaIidIndexMapped[env][i] =
411
296k
          pBsData->aaIidIndex[env][i];
412
296k
    }
413
304k
    for (i = 0; i < NO_HI_RES_ICC_BINS; i++) {
414
296k
      h_ps_d->specificTo.mpeg.pCoef->aaIccIndexMapped[env][i] =
415
296k
          pBsData->aaIccIndex[env][i];
416
296k
    }
417
8.70k
  }
418
419
  /* MPEG baseline PS */
420
  /* Baseline version of PS always uses the hybrid filter structure with 20
421
   * stereo bands. */
422
  /* If ICC/IID parameters for 34 stereo bands are decoded they have to be
423
   * mapped to 20   */
424
  /* stereo bands. */
425
  /* Additionaly the IPD/OPD parameters won't be used. */
426
427
12.2k
  for (env = 0; env < pBsData->noEnv; env++) {
428
8.70k
    if (pBsData->freqResIid == 2)
429
2.05k
      map34IndexTo20(h_ps_d->specificTo.mpeg.pCoef->aaIidIndexMapped[env],
430
2.05k
                     NO_HI_RES_IID_BINS);
431
8.70k
    if (pBsData->freqResIcc == 2)
432
1.44k
      map34IndexTo20(h_ps_d->specificTo.mpeg.pCoef->aaIccIndexMapped[env],
433
1.44k
                     NO_HI_RES_ICC_BINS);
434
435
    /* IPD/OPD is disabled in baseline version and thus was removed here */
436
8.70k
  }
437
438
3.59k
  return (1);
439
4.04k
}
440
441
/***************************************************************************/
442
/*!
443
444
  \brief  Reads parametric stereo data from bitstream
445
446
  \return
447
448
****************************************************************************/
449
unsigned int ReadPsData(
450
    HANDLE_PS_DEC h_ps_d,         /*!< handle to struct PS_DEC */
451
    HANDLE_FDK_BITSTREAM hBitBuf, /*!< handle to struct BIT_BUF */
452
    int nBitsLeft                 /*!< max number of bits available */
453
11.0k
) {
454
11.0k
  MPEG_PS_BS_DATA *pBsData;
455
456
11.0k
  UCHAR gr, env;
457
11.0k
  SCHAR dtFlag;
458
11.0k
  INT startbits;
459
11.0k
  Huffman CurrentTable;
460
11.0k
  SCHAR bEnableHeader;
461
462
11.0k
  if (!h_ps_d) return 0;
463
464
11.0k
  pBsData = &h_ps_d->bsData[h_ps_d->bsReadSlot].mpeg;
465
466
11.0k
  if (h_ps_d->bsReadSlot != h_ps_d->bsLastSlot) {
467
    /* Copy last header data */
468
7.17k
    FDKmemcpy(pBsData, &h_ps_d->bsData[h_ps_d->bsLastSlot].mpeg,
469
7.17k
              sizeof(MPEG_PS_BS_DATA));
470
7.17k
  }
471
472
11.0k
  startbits = (INT)FDKgetValidBits(hBitBuf);
473
474
11.0k
  bEnableHeader = (SCHAR)FDKreadBits(hBitBuf, 1);
475
476
  /* Read header */
477
11.0k
  if (bEnableHeader) {
478
5.33k
    pBsData->bPsHeaderValid = 1;
479
5.33k
    pBsData->bEnableIid = (UCHAR)FDKreadBits(hBitBuf, 1);
480
5.33k
    if (pBsData->bEnableIid) {
481
3.13k
      pBsData->modeIid = (UCHAR)FDKreadBits(hBitBuf, 3);
482
3.13k
    }
483
484
5.33k
    pBsData->bEnableIcc = (UCHAR)FDKreadBits(hBitBuf, 1);
485
5.33k
    if (pBsData->bEnableIcc) {
486
1.63k
      pBsData->modeIcc = (UCHAR)FDKreadBits(hBitBuf, 3);
487
1.63k
    }
488
489
5.33k
    pBsData->bEnableExt = (UCHAR)FDKreadBits(hBitBuf, 1);
490
5.33k
  }
491
492
11.0k
  pBsData->bFrameClass = (UCHAR)FDKreadBits(hBitBuf, 1);
493
11.0k
  if (pBsData->bFrameClass == 0) {
494
    /* FIX_BORDERS NoEnv=0,1,2,4 */
495
2.98k
    pBsData->noEnv =
496
2.98k
        FDK_sbrDecoder_aFixNoEnvDecode[(UCHAR)FDKreadBits(hBitBuf, 2)];
497
    /* all additional handling of env borders is now in DecodePs() */
498
8.03k
  } else {
499
    /* VAR_BORDERS NoEnv=1,2,3,4 */
500
8.03k
    pBsData->noEnv = 1 + (UCHAR)FDKreadBits(hBitBuf, 2);
501
33.6k
    for (env = 1; env < pBsData->noEnv + 1; env++)
502
25.6k
      pBsData->aEnvStartStop[env] = ((UCHAR)FDKreadBits(hBitBuf, 5)) + 1;
503
    /* all additional handling of env borders is now in DecodePs() */
504
8.03k
  }
505
506
  /* verify that IID & ICC modes (quant grid, freq res) are supported */
507
11.0k
  if ((pBsData->modeIid > 5) || (pBsData->modeIcc > 5)) {
508
    /* no useful PS data could be read from bitstream */
509
1.22k
    h_ps_d->bPsDataAvail[h_ps_d->bsReadSlot] = ppt_none;
510
    /* discard all remaining bits */
511
1.22k
    nBitsLeft -= startbits - (INT)FDKgetValidBits(hBitBuf);
512
20.7k
    while (nBitsLeft > 0) {
513
19.5k
      int i = nBitsLeft;
514
19.5k
      if (i > 8) {
515
18.8k
        i = 8;
516
18.8k
      }
517
19.5k
      FDKreadBits(hBitBuf, i);
518
19.5k
      nBitsLeft -= i;
519
19.5k
    }
520
1.22k
    return (UINT)(startbits - (INT)FDKgetValidBits(hBitBuf));
521
1.22k
  }
522
523
9.80k
  if (pBsData->modeIid > 2) {
524
2.78k
    pBsData->freqResIid = pBsData->modeIid - 3;
525
2.78k
    pBsData->bFineIidQ = 1;
526
7.01k
  } else {
527
7.01k
    pBsData->freqResIid = pBsData->modeIid;
528
7.01k
    pBsData->bFineIidQ = 0;
529
7.01k
  }
530
531
9.80k
  if (pBsData->modeIcc > 2) {
532
2.20k
    pBsData->freqResIcc = pBsData->modeIcc - 3;
533
7.59k
  } else {
534
7.59k
    pBsData->freqResIcc = pBsData->modeIcc;
535
7.59k
  }
536
537
  /* Extract IID data */
538
9.80k
  if (pBsData->bEnableIid) {
539
18.1k
    for (env = 0; env < pBsData->noEnv; env++) {
540
13.5k
      dtFlag = (SCHAR)FDKreadBits(hBitBuf, 1);
541
13.5k
      if (!dtFlag) {
542
7.66k
        if (pBsData->bFineIidQ)
543
4.00k
          CurrentTable = (Huffman)&aBookPsIidFineFreqDecode;
544
3.66k
        else
545
3.66k
          CurrentTable = (Huffman)&aBookPsIidFreqDecode;
546
7.66k
      } else {
547
5.88k
        if (pBsData->bFineIidQ)
548
2.97k
          CurrentTable = (Huffman)&aBookPsIidFineTimeDecode;
549
2.91k
        else
550
2.91k
          CurrentTable = (Huffman)&aBookPsIidTimeDecode;
551
5.88k
      }
552
553
292k
      for (gr = 0; gr < FDK_sbrDecoder_aNoIidBins[pBsData->freqResIid]; gr++)
554
278k
        pBsData->aaIidIndex[env][gr] =
555
278k
            decode_huff_cw(CurrentTable, hBitBuf, NULL);
556
13.5k
      pBsData->abIidDtFlag[env] = dtFlag;
557
13.5k
    }
558
4.58k
  }
559
560
  /* Extract ICC data */
561
9.80k
  if (pBsData->bEnableIcc) {
562
10.8k
    for (env = 0; env < pBsData->noEnv; env++) {
563
7.84k
      dtFlag = (SCHAR)FDKreadBits(hBitBuf, 1);
564
7.84k
      if (!dtFlag)
565
5.58k
        CurrentTable = (Huffman)&aBookPsIccFreqDecode;
566
2.25k
      else
567
2.25k
        CurrentTable = (Huffman)&aBookPsIccTimeDecode;
568
569
138k
      for (gr = 0; gr < FDK_sbrDecoder_aNoIccBins[pBsData->freqResIcc]; gr++)
570
131k
        pBsData->aaIccIndex[env][gr] =
571
131k
            decode_huff_cw(CurrentTable, hBitBuf, NULL);
572
7.84k
      pBsData->abIccDtFlag[env] = dtFlag;
573
7.84k
    }
574
2.97k
  }
575
576
9.80k
  if (pBsData->bEnableExt) {
577
    /*!
578
    Decoders that support only the baseline version of the PS tool are allowed
579
    to ignore the IPD/OPD data, but according header data has to be parsed.
580
    ISO/IEC 14496-3 Subpart 8 Annex 4
581
    */
582
583
3.33k
    int cnt = FDKreadBits(hBitBuf, PS_EXTENSION_SIZE_BITS);
584
3.33k
    if (cnt == (1 << PS_EXTENSION_SIZE_BITS) - 1) {
585
719
      cnt += FDKreadBits(hBitBuf, PS_EXTENSION_ESC_COUNT_BITS);
586
719
    }
587
142k
    while (cnt--) FDKreadBits(hBitBuf, 8);
588
3.33k
  }
589
590
  /* new PS data was read from bitstream */
591
9.80k
  h_ps_d->bPsDataAvail[h_ps_d->bsReadSlot] = ppt_mpeg;
592
593
9.80k
  return (startbits - (INT)FDKgetValidBits(hBitBuf));
594
11.0k
}