qc_main.cpp 61.7 KB
Newer Older
1 2 3 4

/* -----------------------------------------------------------------------------------------------------------
Software License for The Fraunhofer FDK AAC Codec Library for Android

5
© Copyright  1995 - 2015 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
  All rights reserved.

 1.    INTRODUCTION
The Fraunhofer FDK AAC Codec Library for Android ("FDK AAC Codec") is software that implements
the MPEG Advanced Audio Coding ("AAC") encoding and decoding scheme for digital audio.
This FDK AAC Codec software is intended to be used on a wide variety of Android devices.

AAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient general perceptual
audio codecs. AAC-ELD is considered the best-performing full-bandwidth communications codec by
independent studies and is widely deployed. AAC has been standardized by ISO and IEC as part
of the MPEG specifications.

Patent licenses for necessary patent claims for the FDK AAC Codec (including those of Fraunhofer)
may be obtained through Via Licensing (www.vialicensing.com) or through the respective patent owners
individually for the purpose of encoding or decoding bit streams in products that are compliant with
the ISO/IEC MPEG audio standards. Please note that most manufacturers of Android devices already license
these patent claims through Via Licensing or directly from the patent owners, and therefore FDK AAC Codec
software may already be covered under those patent licenses when it is used for those licensed purposes only.

Commercially-licensed AAC software libraries, including floating-point versions with enhanced sound quality,
are also available from Fraunhofer. Users are encouraged to check the Fraunhofer website for additional
applications information and documentation.

2.    COPYRIGHT LICENSE

Redistribution and use in source and binary forms, with or without modification, are permitted without
payment of copyright license fees provided that you satisfy the following conditions:

You must retain the complete text of this software license in redistributions of the FDK AAC Codec or
your modifications thereto in source code form.

You must retain the complete text of this software license in the documentation and/or other materials
provided with redistributions of the FDK AAC Codec or your modifications thereto in binary form.
You must make available free of charge copies of the complete source code of the FDK AAC Codec and your
modifications thereto to recipients of copies in binary form.

The name of Fraunhofer may not be used to endorse or promote products derived from this library without
prior written permission.

You may not charge copyright license fees for anyone to use, copy or distribute the FDK AAC Codec
software or your modifications thereto.

Your modified versions of the FDK AAC Codec must carry prominent notices stating that you changed the software
and the date of any change. For modified versions of the FDK AAC Codec, the term
"Fraunhofer FDK AAC Codec Library for Android" must be replaced by the term
"Third-Party Modified Version of the Fraunhofer FDK AAC Codec Library for Android."

3.    NO PATENT LICENSE

NO EXPRESS OR IMPLIED LICENSES TO ANY PATENT CLAIMS, including without limitation the patents of Fraunhofer,
ARE GRANTED BY THIS SOFTWARE LICENSE. Fraunhofer provides no warranty of patent non-infringement with
respect to this software.

You may use this FDK AAC Codec software or modifications thereto only for purposes that are authorized
by appropriate patent licenses.

4.    DISCLAIMER

This FDK AAC Codec software is provided by Fraunhofer on behalf of the copyright holders and contributors
"AS IS" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, including but not limited to the implied warranties
of merchantability and fitness for a particular purpose. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE for any direct, indirect, incidental, special, exemplary, or consequential damages,
including but not limited to procurement of substitute goods or services; loss of use, data, or profits,
or business interruption, however caused and on any theory of liability, whether in contract, strict
liability, or tort (including negligence), arising in any way out of the use of this software, even if
advised of the possibility of such damage.

5.    CONTACT INFORMATION

Fraunhofer Institute for Integrated Circuits IIS
Attention: Audio and Multimedia Departments - FDK AAC LL
Am Wolfsmantel 33
91058 Erlangen, Germany

www.iis.fraunhofer.de/amm
amm-info@iis.fraunhofer.de
----------------------------------------------------------------------------------------------------------- */

/******************************** MPEG Audio Encoder **************************

   Initial author:       M. Werner
   contents/description: Quantizing & coding

******************************************************************************/

#include "qc_main.h"
#include "quantize.h"
#include "interface.h"
#include "adj_thr.h"
#include "sf_estim.h"
#include "bit_cnt.h"
#include "dyn_bits.h"
#include "channel_map.h"
#include "aacEnc_ram.h"

#include "genericStds.h"


typedef struct {
  QCDATA_BR_MODE bitrateMode;
  LONG vbrQualFactor;
} TAB_VBR_QUAL_FACTOR;

static const TAB_VBR_QUAL_FACTOR tableVbrQualFactor[] = {
  {QCDATA_BR_MODE_VBR_1, FL2FXCONST_DBL(0.160f)}, /* 32 kbps mono   AAC-LC + SBR + PS */
  {QCDATA_BR_MODE_VBR_2, FL2FXCONST_DBL(0.148f)}, /* 64 kbps stereo AAC-LC + SBR      */
  {QCDATA_BR_MODE_VBR_3, FL2FXCONST_DBL(0.135f)}, /* 80 - 96 kbps stereo AAC-LC       */
  {QCDATA_BR_MODE_VBR_4, FL2FXCONST_DBL(0.111f)}, /* 128 kbps stereo AAC-LC           */
114
  {QCDATA_BR_MODE_VBR_5, FL2FXCONST_DBL(0.070f)}  /* 192 kbps stereo AAC-LC           */
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
};

static INT isConstantBitrateMode(
        const QCDATA_BR_MODE bitrateMode
        )
{
  return ( ((bitrateMode==QCDATA_BR_MODE_CBR) || (bitrateMode==QCDATA_BR_MODE_SFR) || (bitrateMode==QCDATA_BR_MODE_FF)) ? 1 : 0 );
}



typedef enum{
    FRAME_LEN_BYTES_MODULO =  1,
    FRAME_LEN_BYTES_INT    =  2
}FRAME_LEN_RESULT_MODE;

/* forward declarations */

static INT FDKaacEnc_calcMaxValueInSfb(INT   sfbCnt,
                             INT   maxSfbPerGroup,
                             INT   sfbPerGroup,
                             INT  *RESTRICT sfbOffset,
                             SHORT *RESTRICT quantSpectrum,
                             UINT *RESTRICT maxValue);

static void FDKaacEnc_crashRecovery(INT               nChannels,
                          PSY_OUT_ELEMENT*  psyOutElement,
                          QC_OUT*           qcOut,
                          QC_OUT_ELEMENT   *qcElement,
                          INT               bitsToSave,
                          AUDIO_OBJECT_TYPE aot,
                          UINT              syntaxFlags,
                          SCHAR             epConfig);

static
AAC_ENCODER_ERROR FDKaacEnc_reduceBitConsumption(int*             iterations,
                                       const int        maxIterations,
                                       int              gainAdjustment,
                                       int*             chConstraintsFulfilled,
                                       int*             calculateQuant,
                                       int              nChannels,
                                       PSY_OUT_ELEMENT* psyOutElement,
                                       QC_OUT*          qcOut,
                                       QC_OUT_ELEMENT*  qcOutElement,
                                       ELEMENT_BITS*    elBits,
                                       AUDIO_OBJECT_TYPE  aot,
                                       UINT             syntaxFlags,
                                       SCHAR            epConfig);


void  FDKaacEnc_QCClose (QC_STATE  **phQCstate, QC_OUT **phQC);

/*****************************************************************************

    functionname: FDKaacEnc_calcFrameLen
    description:
    returns:
    input:
    output:

*****************************************************************************/
static INT FDKaacEnc_calcFrameLen(INT bitRate,
                        INT sampleRate,
                        INT granuleLength,
                        FRAME_LEN_RESULT_MODE mode)
{

   INT result;

   result = ((granuleLength)>>3)*(bitRate);

   switch(mode) {
     case FRAME_LEN_BYTES_MODULO:
         result %= sampleRate;
     break;
     case FRAME_LEN_BYTES_INT:
         result /= sampleRate;
     break;
   }
   return(result);
}

/*****************************************************************************

    functionname:FDKaacEnc_framePadding
    description: Calculates if padding is needed for actual frame
    returns:
    input:
    output:

*****************************************************************************/
static INT FDKaacEnc_framePadding(INT bitRate,
                        INT sampleRate,
                        INT granuleLength,
                        INT *paddingRest)
{
  INT paddingOn;
  INT difference;

  paddingOn = 0;

  difference = FDKaacEnc_calcFrameLen( bitRate,
                             sampleRate,
                             granuleLength,
                             FRAME_LEN_BYTES_MODULO );
  *paddingRest-=difference;

  if (*paddingRest <= 0 ) {
    paddingOn = 1;
    *paddingRest += sampleRate;
  }

  return( paddingOn );
}


/*********************************************************************************

         functionname: FDKaacEnc_QCOutNew
         description:
         return:

**********************************************************************************/
AAC_ENCODER_ERROR FDKaacEnc_QCOutNew(QC_OUT    **phQC,
                                     const INT   nElements,
                                     const INT   nChannels,
                                     const INT   nSubFrames
                                    ,UCHAR      *dynamic_RAM
                                    )
{
  AAC_ENCODER_ERROR ErrorStatus;
  int n, i;
  int elInc = 0, chInc = 0;

  for (n=0; n<nSubFrames; n++) {
    phQC[n] = GetRam_aacEnc_QCout(n);
    if (phQC[n] == NULL) {
      ErrorStatus = AAC_ENC_NO_MEMORY;
      goto QCOutNew_bail;
    }

    for (i=0; i<nChannels; i++) {
      phQC[n]->pQcOutChannels[i] = GetRam_aacEnc_QCchannel(chInc, dynamic_RAM);
      if ( phQC[n]->pQcOutChannels[i] == NULL
         )
      {
         ErrorStatus = AAC_ENC_NO_MEMORY;
         goto QCOutNew_bail;
      }
      chInc++;
    } /* nChannels */

    for (i=0; i<nElements; i++) {
      phQC[n]->qcElement[i]      = GetRam_aacEnc_QCelement(elInc);
      if (phQC[n]->qcElement[i] == NULL)
      {
        ErrorStatus = AAC_ENC_NO_MEMORY;
        goto QCOutNew_bail;
      }
      elInc++;
    } /* nElements */

  } /* nSubFrames */


  return AAC_ENC_OK;

QCOutNew_bail:
  return ErrorStatus;
}

/*********************************************************************************

         functionname: FDKaacEnc_QCOutInit
         description:
         return:

**********************************************************************************/
AAC_ENCODER_ERROR FDKaacEnc_QCOutInit(QC_OUT          *phQC[(1)],
                                      const INT        nSubFrames,
                                      const CHANNEL_MAPPING *cm)
{
  INT n,i,ch;

  for (n=0; n<nSubFrames; n++) {
    INT chInc = 0;
    for (i=0; i<cm->nElements; i++) {
      for (ch=0; ch<cm->elInfo[i].nChannelsInEl; ch++) {
        phQC[n]->qcElement[i]->qcOutChannel[ch] = phQC[n]->pQcOutChannels[chInc];
        chInc++;
      } /* chInEl */
    } /* nElements */
  } /* nSubFrames */

  return AAC_ENC_OK;
}

/*********************************************************************************

         functionname: FDKaacEnc_QCNew
         description:
         return:

**********************************************************************************/
AAC_ENCODER_ERROR FDKaacEnc_QCNew(QC_STATE  **phQC,
                                  INT         nElements
                                 ,UCHAR*      dynamic_RAM
           )
{
  AAC_ENCODER_ERROR ErrorStatus;
  int i;

  QC_STATE* hQC = GetRam_aacEnc_QCstate();
  *phQC = hQC;
  if (hQC == NULL) {
    ErrorStatus = AAC_ENC_NO_MEMORY;
    goto QCNew_bail;
  }

  if (FDKaacEnc_AdjThrNew(&hQC->hAdjThr, nElements)) {
    ErrorStatus = AAC_ENC_NO_MEMORY;
    goto QCNew_bail;
  }

  if (FDKaacEnc_BCNew(&(hQC->hBitCounter), dynamic_RAM)) {
    ErrorStatus = AAC_ENC_NO_MEMORY;
    goto QCNew_bail;
  }

  for (i=0; i<nElements; i++) {
    hQC->elementBits[i] = GetRam_aacEnc_ElementBits(i);
    if (hQC->elementBits[i] == NULL) {
      ErrorStatus = AAC_ENC_NO_MEMORY;
      goto QCNew_bail;
    }
  }

  return AAC_ENC_OK;

QCNew_bail:
  FDKaacEnc_QCClose(phQC, NULL);
  return ErrorStatus;
}

/*********************************************************************************

         functionname: FDKaacEnc_QCInit
         description:
         return:

**********************************************************************************/
AAC_ENCODER_ERROR FDKaacEnc_QCInit(QC_STATE *hQC,
                                   struct QC_INIT *init)
{
369
  int i;
370 371 372 373 374 375 376 377 378 379 380 381 382
  hQC->maxBitsPerFrame = init->maxBits;
  hQC->minBitsPerFrame = init->minBits;
  hQC->nElements       = init->channelMapping->nElements;
  hQC->bitResTotMax    = init->bitRes;
  hQC->bitResTot       = init->bitRes;
  hQC->maxBitFac       = init->maxBitFac;
  hQC->bitrateMode     = init->bitrateMode;
  hQC->invQuant        = init->invQuant;
  hQC->maxIterations   = init->maxIterations;

  if ( isConstantBitrateMode(hQC->bitrateMode) ) {
    INT bitresPerChannel = (hQC->bitResTotMax / init->channelMapping->nChannelsEff);
    /* 0: full bitreservoir, 1: reduced bitreservoir, 2: disabled bitreservoir */
383
    hQC->bitDistributionMode = (bitresPerChannel>100) ? 0 : (bitresPerChannel>0) ? 1 : 2;
384 385
  }
  else {
386
    hQC->bitDistributionMode = 0; /* full bitreservoir */
387 388 389 390 391 392 393 394 395 396 397 398 399
  }


  hQC->padding.paddingRest = init->padding.paddingRest;

  hQC->globHdrBits = init->staticBits; /* Bit overhead due to transport */

  FDKaacEnc_InitElementBits(hQC,
                            init->channelMapping,
                            init->bitrate,
                            (init->averageBits/init->nSubFrames) - hQC->globHdrBits,
                            hQC->maxBitsPerFrame/init->channelMapping->nChannelsEff);

400 401 402 403
  hQC->vbrQualFactor = FL2FXCONST_DBL(0.f);
  for (i=0; i<(int)(sizeof(tableVbrQualFactor)/sizeof(TAB_VBR_QUAL_FACTOR)); i++) {
    if (hQC->bitrateMode==tableVbrQualFactor[i].bitrateMode) {
      hQC->vbrQualFactor = (FIXP_DBL)tableVbrQualFactor[i].vbrQualFactor;
404
      break;
405
    }
406 407
  }

408 409 410 411 412 413 414 415 416 417 418
  FDKaacEnc_AdjThrInit(
        hQC->hAdjThr,
        init->meanPe,
        hQC->elementBits,                 /* or channelBitrates, was: channelBitrate */
        hQC->invQuant,
        init->channelMapping->nElements,
        init->channelMapping->nChannelsEff,
        init->sampleRate,                 /* output sample rate */
        init->advancedBitsToPe,           /* if set, calc bits2PE factor depending on samplerate */
        hQC->vbrQualFactor
        );
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498

  return AAC_ENC_OK;
}



/*********************************************************************************

         functionname: FDKaacEnc_QCMainPrepare
         description:
         return:

**********************************************************************************/
AAC_ENCODER_ERROR FDKaacEnc_QCMainPrepare(ELEMENT_INFO              *elInfo,
                                          ATS_ELEMENT* RESTRICT      adjThrStateElement,
                                          PSY_OUT_ELEMENT* RESTRICT  psyOutElement,
                                          QC_OUT_ELEMENT* RESTRICT   qcOutElement,
                                          AUDIO_OBJECT_TYPE          aot,
                                          UINT                       syntaxFlags,
                                          SCHAR                      epConfig
                                         )
{
  AAC_ENCODER_ERROR ErrorStatus = AAC_ENC_OK;
  INT  nChannels = elInfo->nChannelsInEl;

  PSY_OUT_CHANNEL** RESTRICT psyOutChannel = psyOutElement->psyOutChannel;    /* may be modified in-place */

  FDKaacEnc_CalcFormFactor(qcOutElement->qcOutChannel, psyOutChannel, nChannels);

  /* prepare and calculate PE without reduction */
  FDKaacEnc_peCalculation(&qcOutElement->peData, psyOutChannel, qcOutElement->qcOutChannel, &psyOutElement->toolsInfo, adjThrStateElement, nChannels);

  ErrorStatus = FDKaacEnc_ChannelElementWrite( NULL, elInfo, NULL,
                                               psyOutElement,
                                               psyOutElement->psyOutChannel,
                                               syntaxFlags,
                                               aot,
                                               epConfig,
                                              &qcOutElement->staticBitsUsed,
                                               0 );

  return ErrorStatus;
}

/*********************************************************************************

         functionname: FDKaacEnc_AdjustBitrate
         description:  adjusts framelength via padding on a frame to frame basis,
                       to achieve a bitrate that demands a non byte aligned
                       framelength
         return:       errorcode

**********************************************************************************/
AAC_ENCODER_ERROR FDKaacEnc_AdjustBitrate(QC_STATE        *RESTRICT hQC,
                                          CHANNEL_MAPPING *RESTRICT cm,
                                          INT             *avgTotalBits,
                                          INT              bitRate,       /* total bitrate */
                                          INT              sampleRate,    /* output sampling rate */
                                          INT              granuleLength) /* frame length */
{
  INT paddingOn;
  INT frameLen;

  /* Do we need an extra padding byte? */
  paddingOn = FDKaacEnc_framePadding(bitRate,
                           sampleRate,
                           granuleLength,
                          &hQC->padding.paddingRest);

  frameLen = paddingOn + FDKaacEnc_calcFrameLen(bitRate,
                                      sampleRate,
                                      granuleLength,
                                      FRAME_LEN_BYTES_INT);

  *avgTotalBits = frameLen<<3;

  return AAC_ENC_OK;
}

static AAC_ENCODER_ERROR FDKaacEnc_distributeElementDynBits(QC_STATE*         hQC,
Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
499
                                                  QC_OUT_ELEMENT*   qcElement[(8)],
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
                                                  CHANNEL_MAPPING*  cm,
                                                  INT               codeBits)
{

  INT i, firstEl = cm->nElements-1;
  INT totalBits = 0;

  for (i=(cm->nElements-1); i>=0; i--) {
    if ((cm->elInfo[i].elType == ID_SCE) || (cm->elInfo[i].elType == ID_CPE) ||
        (cm->elInfo[i].elType == ID_LFE))
    {
      qcElement[i]->grantedDynBits =  (INT)fMult(hQC->elementBits[i]->relativeBitsEl, (FIXP_DBL)codeBits);
      totalBits += qcElement[i]->grantedDynBits;
      firstEl = i;
    }
  }
  qcElement[firstEl]->grantedDynBits += codeBits - totalBits;

  return AAC_ENC_OK;
}

/**
 * \brief  Verify whether minBitsPerFrame criterion can be satisfied.
 *
 * This function evaluates the bit consumption only if minBitsPerFrame parameter is not 0.
 * In hyperframing mode the difference between grantedDynBits and usedDynBits of all sub frames
 * results the number of fillbits to be written.
 * This bits can be distrubitued in superframe to reach minBitsPerFrame bit consumption in single AU's.
 * The return value denotes if enough desired fill bits are available to achieve minBitsPerFrame in all frames.
 * This check can only be used within superframes.
 *
 * \param qcOut            Pointer to coding data struct.
 * \param minBitsPerFrame  Minimal number of bits to be consumed in each frame.
 * \param nSubFrames       Number of frames in superframe
 *
 * \return
 *          - 1: all fine
 *          - 0: criterion not fulfilled
 */
static int checkMinFrameBitsDemand(
        QC_OUT**                  qcOut,
        const INT                 minBitsPerFrame,
        const INT                 nSubFrames
        )
{
  int result = 1; /* all fine*/
  return result;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*********************************************************************************

         functionname: FDKaacEnc_getMinimalStaticBitdemand
         description:  calculate minmal size of static bits by reduction ,
                       to zero spectrum and deactivating tns and MS
         return:       number of static bits

**********************************************************************************/
static int FDKaacEnc_getMinimalStaticBitdemand(CHANNEL_MAPPING*     cm,
                                               PSY_OUT**            psyOut)
{
  AUDIO_OBJECT_TYPE aot = AOT_AAC_LC;
  UINT  syntaxFlags = 0;
  SCHAR epConfig = -1;
  int i, bitcount = 0;

  for (i=0; i<cm->nElements; i++) {
      ELEMENT_INFO elInfo = cm->elInfo[i];

      if ( (elInfo.elType == ID_SCE)
        || (elInfo.elType == ID_CPE)
        || (elInfo.elType == ID_LFE) )
      {
        INT minElBits = 0;

        FDKaacEnc_ChannelElementWrite( NULL, &elInfo, NULL,
                                       psyOut[0]->psyOutElement[i],
                                       psyOut[0]->psyOutElement[i]->psyOutChannel,
                                       syntaxFlags,
                                       aot,
                                       epConfig,
                                      &minElBits,
                                       1 );
        bitcount += minElBits;
      }
  }

  return bitcount;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static AAC_ENCODER_ERROR FDKaacEnc_prepareBitDistribution(QC_STATE*            hQC,
                                                PSY_OUT**            psyOut,
                                                QC_OUT**             qcOut,
                                                CHANNEL_MAPPING*     cm,
Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
598
                                                QC_OUT_ELEMENT*      qcElement[(1)][(8)],
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
                                                INT                  avgTotalBits,
                                                INT                 *totalAvailableBits,
                                                INT                 *avgTotalDynBits)
{
    int i;
      /* get maximal allowed dynamic bits */
      qcOut[0]->grantedDynBits =  (fixMin(hQC->maxBitsPerFrame, avgTotalBits) - hQC->globHdrBits)&~7;
      qcOut[0]->grantedDynBits -= (qcOut[0]->globalExtBits + qcOut[0]->staticBits + qcOut[0]->elementExtBits);
      qcOut[0]->maxDynBits = ((hQC->maxBitsPerFrame)&~7) - (qcOut[0]->globalExtBits + qcOut[0]->staticBits + qcOut[0]->elementExtBits);
      /* assure that enough bits are available */
      if ((qcOut[0]->grantedDynBits+hQC->bitResTot) < 0) {
        /* crash recovery allows to reduce static bits to a minimum */
        if ( (qcOut[0]->grantedDynBits+hQC->bitResTot) < (FDKaacEnc_getMinimalStaticBitdemand(cm, psyOut)-qcOut[0]->staticBits) )
          return AAC_ENC_BITRES_TOO_LOW;
      }

      /* distribute dynamic bits to each element */
      FDKaacEnc_distributeElementDynBits(hQC,
                               qcElement[0],
                               cm,
                               qcOut[0]->grantedDynBits);

      *avgTotalDynBits = 0; /*frameDynBits;*/

    *totalAvailableBits = avgTotalBits;

    /* sum up corrected granted PE */
    qcOut[0]->totalGrantedPeCorr = 0;

    for (i=0; i<cm->nElements; i++)
    {
        ELEMENT_INFO elInfo = cm->elInfo[i];
        int nChannels = elInfo.nChannelsInEl;

        if ((elInfo.elType == ID_SCE) || (elInfo.elType == ID_CPE) ||
            (elInfo.elType == ID_LFE))
        {
                /* for ( all sub frames ) ... */
                FDKaacEnc_DistributeBits(hQC->hAdjThr,
                                         hQC->hAdjThr->adjThrStateElem[i],
                                         psyOut[0]->psyOutElement[i]->psyOutChannel,
                                        &qcElement[0][i]->peData,
                                        &qcElement[0][i]->grantedPe,
                                        &qcElement[0][i]->grantedPeCorr,
                                         nChannels,
                                         psyOut[0]->psyOutElement[i]->commonWindow,
                                         qcElement[0][i]->grantedDynBits,
                                         hQC->elementBits[i]->bitResLevelEl,
                                         hQC->elementBits[i]->maxBitResBitsEl,
                                         hQC->maxBitFac,
649
                                         hQC->bitDistributionMode);
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664

                *totalAvailableBits += hQC->elementBits[i]->bitResLevelEl;
        /* get total corrected granted PE */
        qcOut[0]->totalGrantedPeCorr += qcElement[0][i]->grantedPeCorr;
        }  /*  -end- if(ID_SCE || ID_CPE || ID_LFE) */

    }  /* -end- element loop */

    *totalAvailableBits = FDKmin(hQC->maxBitsPerFrame, (*totalAvailableBits));

    return AAC_ENC_OK;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
static AAC_ENCODER_ERROR FDKaacEnc_updateUsedDynBits(INT*               sumDynBitsConsumed,
Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
665
                                            QC_OUT_ELEMENT*    qcElement[(8)],
666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
                                            CHANNEL_MAPPING*   cm)
{
  INT i;

  *sumDynBitsConsumed = 0;

  for (i=0; i<cm->nElements; i++)
  {
      ELEMENT_INFO elInfo = cm->elInfo[i];

      if ((elInfo.elType == ID_SCE) || (elInfo.elType == ID_CPE) ||
          (elInfo.elType == ID_LFE))
      {
          /* sum up bits consumed */
          *sumDynBitsConsumed  += qcElement[i]->dynBitsUsed;
      }  /*  -end- if(ID_SCE || ID_CPE || ID_LFE) */

  }  /* -end- element loop */

  return AAC_ENC_OK;
}


static INT FDKaacEnc_getTotalConsumedDynBits(QC_OUT** qcOut,
                                   INT nSubFrames)
{
    INT c, totalBits=0;

    /* sum up bit consumption for all sub frames */
    for (c=0; c<nSubFrames; c++)
    {
        /* bit consumption not valid if dynamic bits
           not available in one sub frame */
        if (qcOut[c]->usedDynBits==-1) return -1;
        totalBits += qcOut[c]->usedDynBits;
    }

    return totalBits;

}

static INT FDKaacEnc_getTotalConsumedBits(QC_OUT**          qcOut,
Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
708
                                QC_OUT_ELEMENT*   qcElement[(1)][(8)],
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
                                CHANNEL_MAPPING*  cm,
                                INT               globHdrBits,
                                INT               nSubFrames)
{
    int c, i;
    int totalUsedBits = 0;

    for (c = 0 ; c < nSubFrames ; c++ )
    {
        int dataBits = 0;
        for (i=0; i<cm->nElements; i++)
        {
            if ((cm->elInfo[i].elType == ID_SCE) || (cm->elInfo[i].elType == ID_CPE) ||
                (cm->elInfo[i].elType == ID_LFE))
            {
                   dataBits += qcElement[c][i]->dynBitsUsed + qcElement[c][i]->staticBitsUsed + qcElement[c][i]->extBitsUsed;
            }
        }
        dataBits += qcOut[c]->globalExtBits;

        totalUsedBits += (8 - (dataBits) % 8) % 8;
        totalUsedBits += dataBits + globHdrBits;  /* header bits for every frame */
    }
    return totalUsedBits;
}

static AAC_ENCODER_ERROR FDKaacEnc_BitResRedistribution(
        QC_STATE *const              hQC,
        const CHANNEL_MAPPING *const cm,
        const INT                    avgTotalBits
        )
{
    /* check bitreservoir fill level */
    if (hQC->bitResTot < 0) {
      return AAC_ENC_BITRES_TOO_LOW;
    }
    else if (hQC->bitResTot > hQC->bitResTotMax) {
      return AAC_ENC_BITRES_TOO_HIGH;
    }
    else {
      INT i, firstEl = cm->nElements-1;
      INT totalBits = 0, totalBits_max = 0;

      int totalBitreservoir    = FDKmin(hQC->bitResTot, (hQC->maxBitsPerFrame-avgTotalBits));
      int totalBitreservoirMax = FDKmin(hQC->bitResTotMax, (hQC->maxBitsPerFrame-avgTotalBits));

      int sc_bitResTot = CountLeadingBits(totalBitreservoir);
      int sc_bitResTotMax = CountLeadingBits(totalBitreservoirMax);

      for (i=(cm->nElements-1); i>=0; i--) {
        if ((cm->elInfo[i].elType == ID_SCE) || (cm->elInfo[i].elType == ID_CPE) ||
            (cm->elInfo[i].elType == ID_LFE))
        {
          hQC->elementBits[i]->bitResLevelEl = (INT)fMult(hQC->elementBits[i]->relativeBitsEl, (FIXP_DBL)(totalBitreservoir<<sc_bitResTot))>>sc_bitResTot;
          totalBits += hQC->elementBits[i]->bitResLevelEl;

          hQC->elementBits[i]->maxBitResBitsEl = (INT)fMult(hQC->elementBits[i]->relativeBitsEl, (FIXP_DBL)(totalBitreservoirMax<<sc_bitResTotMax))>>sc_bitResTotMax;
          totalBits_max += hQC->elementBits[i]->maxBitResBitsEl;

          firstEl = i;
        }
      }
      hQC->elementBits[firstEl]->bitResLevelEl   += totalBitreservoir - totalBits;
      hQC->elementBits[firstEl]->maxBitResBitsEl += totalBitreservoirMax - totalBits_max;
    }

    return AAC_ENC_OK;
}


AAC_ENCODER_ERROR FDKaacEnc_QCMain(QC_STATE* RESTRICT         hQC,
                                   PSY_OUT**                  psyOut,
                                   QC_OUT**                   qcOut,
                                   INT                        avgTotalBits,
                                   CHANNEL_MAPPING*           cm
                                  ,AUDIO_OBJECT_TYPE          aot,
                                   UINT                       syntaxFlags,
                                   SCHAR                      epConfig
                                  )
{
  int i, c;
  AAC_ENCODER_ERROR ErrorStatus = AAC_ENC_OK;
791
  INT avgTotalDynBits = 0; /* maximal allowed dynamic bits for all frames */
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
  INT totalAvailableBits = 0;
  INT nSubFrames = 1;

  /*-------------------------------------------- */
  /* redistribute total bitreservoir to elements */
  ErrorStatus = FDKaacEnc_BitResRedistribution(hQC, cm, avgTotalBits);
  if (ErrorStatus != AAC_ENC_OK) {
    return ErrorStatus;
  }

  /*-------------------------------------------- */
  /* fastenc needs one time threshold simulation,
     in case of multiple frames, one more guess has to be calculated */

      /*-------------------------------------------- */
      /* helper pointer */
Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
808
      QC_OUT_ELEMENT*  qcElement[(1)][(8)];
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884

      /* work on a copy of qcChannel and qcElement */
      for (i=0; i<cm->nElements; i++)
      {
          ELEMENT_INFO elInfo = cm->elInfo[i];

          if ((elInfo.elType == ID_SCE) || (elInfo.elType == ID_CPE) ||
              (elInfo.elType == ID_LFE))
          {
              /* for ( all sub frames ) ... */
              for (c = 0 ; c < nSubFrames ; c++ )
              {
                  {
                      qcElement[c][i] = qcOut[c]->qcElement[i];
                  }
              }
          }
      }

      /*-------------------------------------------- */
      /*-------------------------------------------- */
      if ( isConstantBitrateMode(hQC->bitrateMode) )
      {
          /* calc granted dynamic bits for sub frame and
             distribute it to each element */
          ErrorStatus = FDKaacEnc_prepareBitDistribution(
                                 hQC,
                                 psyOut,
                                 qcOut,
                                 cm,
                                 qcElement,
                                 avgTotalBits,
                                &totalAvailableBits,
                                &avgTotalDynBits);

          if (ErrorStatus != AAC_ENC_OK) {
            return ErrorStatus;
          }
      }
      else {
          qcOut[0]->grantedDynBits = ((hQC->maxBitsPerFrame - (hQC->globHdrBits))&~7)
                                   - (qcOut[0]->globalExtBits + qcOut[0]->staticBits + qcOut[0]->elementExtBits);
          qcOut[0]->maxDynBits     = qcOut[0]->grantedDynBits;

          totalAvailableBits = hQC->maxBitsPerFrame;
          avgTotalDynBits = 0;
      }

#ifdef PNS_PRECOUNT_ENABLE
      /* Calculate estimated pns bits and substract them from grantedDynBits to get a more accurate number of available bits. */
      if (syntaxFlags & (AC_LD|AC_ELD))
      {
        int estimatedPnsBits = 0, ch;

        for (ch=0; ch<cm->nChannels; ch++) {
          qcOut[0]->pQcOutChannels[ch]->sectionData.noiseNrgBits = noisePreCount(psyOut[0]->pPsyOutChannels[ch]->noiseNrg, psyOut[0]->pPsyOutChannels[ch]->maxSfbPerGroup);
          estimatedPnsBits += qcOut[0]->pQcOutChannels[ch]->sectionData.noiseNrgBits;
        }
        qcOut[0]->grantedDynBits -= estimatedPnsBits;
      }
#endif

      /* for ( all sub frames ) ... */
      for (c = 0 ; c < nSubFrames ; c++ )
      {
          /* for CBR and VBR mode */
          FDKaacEnc_AdjustThresholds(hQC->hAdjThr->adjThrStateElem,
                                     qcElement[c],
                                     qcOut[c],
                                     psyOut[c]->psyOutElement,
                                     isConstantBitrateMode(hQC->bitrateMode),
                                     cm);

      } /* -end- sub frame counter */

      /*-------------------------------------------- */
Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
885 886 887 888
      INT iterations[(1)][(8)];
      INT chConstraintsFulfilled[(1)][(8)][(2)];
      INT calculateQuant[(1)][(8)][(2)];
      INT constraintsFulfilled[(1)][(8)];
889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
      /*-------------------------------------------- */


      /* for ( all sub frames ) ... */
      for (c = 0 ; c < nSubFrames ; c++ )
      {
          for (i=0; i<cm->nElements; i++)
          {
              ELEMENT_INFO elInfo = cm->elInfo[i];
              INT ch, nChannels = elInfo.nChannelsInEl;

              if ((elInfo.elType == ID_SCE) || (elInfo.elType == ID_CPE) ||
                  (elInfo.elType == ID_LFE))
              {
                      /* Turn thresholds into scalefactors, optimize bit consumption and verify conformance */
                      FDKaacEnc_EstimateScaleFactors(psyOut[c]->psyOutElement[i]->psyOutChannel,
                                            qcElement[c][i]->qcOutChannel,
                                            hQC->invQuant,
                                            cm->elInfo[i].nChannelsInEl);


                      /*-------------------------------------------- */
                      constraintsFulfilled[c][i] = 1;
                      iterations[c][i] = 0 ;

                      for (ch = 0; ch < nChannels; ch++)
                      {
                          chConstraintsFulfilled[c][i][ch] = 1;
                          calculateQuant[c][i][ch] = 1;
                      }

                      /*-------------------------------------------- */

              }  /*  -end- if(ID_SCE || ID_CPE || ID_LFE) */

          }  /* -end- element loop */

          qcOut[c]->usedDynBits = -1;

      } /* -end- sub frame counter */



      INT quantizationDone = 0;
      INT sumDynBitsConsumedTotal  = 0;
      INT decreaseBitConsumption = -1; /* no direction yet! */

      /*-------------------------------------------- */
      /* -start- Quantization loop ...               */
      /*-------------------------------------------- */
      do /* until max allowed bits per frame and maxDynBits!=-1*/
      {
          quantizationDone = 0;

              c = 0;              /* get frame to process */

              for (i=0; i<cm->nElements; i++)
              {
                  ELEMENT_INFO elInfo = cm->elInfo[i];
                  INT ch, nChannels = elInfo.nChannelsInEl;

                  if ((elInfo.elType == ID_SCE) || (elInfo.elType == ID_CPE) ||
                      (elInfo.elType == ID_LFE))
                  {
                      do /* until spectral values < MAX_QUANT */
                      {
                          /*-------------------------------------------- */
                          if (!constraintsFulfilled[c][i])
                          {
                              FDKaacEnc_reduceBitConsumption(&iterations[c][i],
                                                    hQC->maxIterations,
                                                    (decreaseBitConsumption) ? 1 : -1,
                                                    chConstraintsFulfilled[c][i],
                                                    calculateQuant[c][i],
                                                    nChannels,
                                                    psyOut[c]->psyOutElement[i],
                                                    qcOut[c],
                                                    qcElement[c][i],
                                                    hQC->elementBits[i],
                                                    aot,
                                                    syntaxFlags,
                                                    epConfig);
                          }

                          /*-------------------------------------------- */
                          /*-------------------------------------------- */
                          constraintsFulfilled[c][i] = 1 ;

                          /*-------------------------------------------- */
                          /* quantize spectrum (per each channel) */
                          for (ch = 0; ch < nChannels; ch++)
                          {
                              /*-------------------------------------------- */
                              chConstraintsFulfilled[c][i][ch] = 1;

                              /*-------------------------------------------- */

                              if (calculateQuant[c][i][ch])
                              {
                                  QC_OUT_CHANNEL* qcOutCh = qcElement[c][i]->qcOutChannel[ch];
                                  PSY_OUT_CHANNEL* psyOutCh = psyOut[c]->psyOutElement[i]->psyOutChannel[ch];

                                  calculateQuant[c][i][ch] = 0; /* calculate quantization only if necessary */

                                  /*-------------------------------------------- */
                                  FDKaacEnc_QuantizeSpectrum(psyOutCh->sfbCnt,
                                                             psyOutCh->maxSfbPerGroup,
                                                             psyOutCh->sfbPerGroup,
                                                             psyOutCh->sfbOffsets,
                                                             qcOutCh->mdctSpectrum,
                                                             qcOutCh->globalGain,
                                                             qcOutCh->scf,
                                                             qcOutCh->quantSpec) ;

                                  /*-------------------------------------------- */
                                  if (FDKaacEnc_calcMaxValueInSfb(psyOutCh->sfbCnt,
                                                        psyOutCh->maxSfbPerGroup,
                                                        psyOutCh->sfbPerGroup,
                                                        psyOutCh->sfbOffsets,
                                                        qcOutCh->quantSpec,
                                                        qcOutCh->maxValueInSfb) > MAX_QUANT)
                                  {
                                    chConstraintsFulfilled[c][i][ch] = 0;
                                    constraintsFulfilled[c][i] = 0 ;
                                    /* if quanizted value out of range; increase global gain! */
                                    decreaseBitConsumption = 1;
                                  }

                                  /*-------------------------------------------- */

                              } /* if calculateQuant[c][i][ch] */

                          } /* channel loop */

                          /*-------------------------------------------- */
                          /* quantize spectrum (per each channel) */

                          /*-------------------------------------------- */

                      } while (!constraintsFulfilled[c][i]) ; /* does not regard bit consumption */


                      /*-------------------------------------------- */
                      /*-------------------------------------------- */
                      qcElement[c][i]->dynBitsUsed = 0 ; /* reset dynamic bits */

                      /* quantization valid in current channel! */
                      for (ch = 0; ch < nChannels; ch++)
                      {
                          QC_OUT_CHANNEL* qcOutCh = qcElement[c][i]->qcOutChannel[ch];
                          PSY_OUT_CHANNEL *psyOutCh = psyOut[c]->psyOutElement[i]->psyOutChannel[ch];

                          /* count dynamic bits */
                          INT chDynBits = FDKaacEnc_dynBitCount(hQC->hBitCounter,
                                                                qcOutCh->quantSpec,
                                                                qcOutCh->maxValueInSfb,
                                                                qcOutCh->scf,
                                                                psyOutCh->lastWindowSequence,
                                                                psyOutCh->sfbCnt,
                                                                psyOutCh->maxSfbPerGroup,
                                                                psyOutCh->sfbPerGroup,
                                                                psyOutCh->sfbOffsets,
                                                                &qcOutCh->sectionData,
                                                                psyOutCh->noiseNrg,
                                                                psyOutCh->isBook,
                                                                psyOutCh->isScale,
                                                                syntaxFlags) ;

                          /* sum up dynamic channel bits */
                          qcElement[c][i]->dynBitsUsed += chDynBits;
                      }

                      /* save dynBitsUsed for correction of bits2pe relation */
                      if(hQC->hAdjThr->adjThrStateElem[i]->dynBitsLast==-1) {
                          hQC->hAdjThr->adjThrStateElem[i]->dynBitsLast = qcElement[c][i]->dynBitsUsed;
                      }
                  }  /*  -end- if(ID_SCE || ID_CPE || ID_LFE) */

              }  /* -end- element loop */

              /* update dynBits of current subFrame */
              FDKaacEnc_updateUsedDynBits(&qcOut[c]->usedDynBits,
                                 qcElement[c],
                                 cm);

              /* get total consumed bits, dyn bits in all sub frames have to be valid */
              sumDynBitsConsumedTotal = FDKaacEnc_getTotalConsumedDynBits(qcOut, nSubFrames);

              if (sumDynBitsConsumedTotal==-1)
              {
                  quantizationDone = 0; /* bit consumption not valid in all sub frames */
              }
              else
              {
                int sumBitsConsumedTotal = FDKaacEnc_getTotalConsumedBits(qcOut, qcElement, cm, hQC->globHdrBits, nSubFrames);

                /* in all frames are valid dynamic bits */
1086
                if ( ((sumBitsConsumedTotal < totalAvailableBits) || qcOut[c]->usedDynBits==0) && (decreaseBitConsumption==1) && checkMinFrameBitsDemand(qcOut,hQC->minBitsPerFrame,nSubFrames)
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
                      /*()*/  )
                {
                    quantizationDone = 1; /* exit bit adjustment */
                }
                if (sumBitsConsumedTotal > totalAvailableBits && (decreaseBitConsumption==0) )
//                      /*()*/  )
                {
                    quantizationDone = 0; /* reset! */
                    break;
                }
              }


          /*-------------------------------------------- */

              int emergencyIterations = 1;
              int dynBitsOvershoot    = 0;

              for (c = 0 ; c < nSubFrames ; c++ )
              {
                  for (i=0; i<cm->nElements; i++)
                  {
                      ELEMENT_INFO elInfo = cm->elInfo[i];

                      if ((elInfo.elType == ID_SCE) || (elInfo.elType == ID_CPE) ||
                          (elInfo.elType == ID_LFE))
                      {
                        /* iteration limitation */
                        emergencyIterations &= ((iterations[c][i] < hQC->maxIterations) ? 0 : 1);
                      }
                  }
                  /* detection if used dyn bits exceeds the maximal allowed criterion */
                  dynBitsOvershoot |= ((qcOut[c]->usedDynBits > qcOut[c]->maxDynBits) ? 1 : 0);
              }

              if (quantizationDone==0 || dynBitsOvershoot)
              {

                  int sumBitsConsumedTotal = FDKaacEnc_getTotalConsumedBits(qcOut, qcElement, cm, hQC->globHdrBits, nSubFrames);

                  if ( (sumDynBitsConsumedTotal >= avgTotalDynBits) || (sumDynBitsConsumedTotal==0) ) {
                      quantizationDone = 1;
                  }
                  if (emergencyIterations && (sumBitsConsumedTotal < totalAvailableBits)) {
                      quantizationDone = 1;
                  }
                  if ((sumBitsConsumedTotal > totalAvailableBits) || !checkMinFrameBitsDemand(qcOut,hQC->minBitsPerFrame,nSubFrames)) {
                      quantizationDone = 0;
                  }
                  if ((sumBitsConsumedTotal < totalAvailableBits) && checkMinFrameBitsDemand(qcOut,hQC->minBitsPerFrame,nSubFrames)) {
                      decreaseBitConsumption = 0;
                  }
                  else {
                      decreaseBitConsumption = 1;
                  }

                  if (dynBitsOvershoot) {
                     quantizationDone = 0;
                     decreaseBitConsumption = 1;
                  }

                  /* reset constraints fullfilled flags */
                  FDKmemclear(constraintsFulfilled, sizeof(constraintsFulfilled));
                  FDKmemclear(chConstraintsFulfilled, sizeof(chConstraintsFulfilled));


              }/* quantizationDone */

      } while (!quantizationDone) ;

      /*-------------------------------------------- */
      /* ... -end- Quantization loop                 */
      /*-------------------------------------------- */

  /*-------------------------------------------- */
  /*-------------------------------------------- */

  return AAC_ENC_OK;
}


static AAC_ENCODER_ERROR FDKaacEnc_reduceBitConsumption(int*             iterations,
                                              const int        maxIterations,
                                              int              gainAdjustment,
                                              int*             chConstraintsFulfilled,
                                              int*             calculateQuant,
                                              int              nChannels,
                                              PSY_OUT_ELEMENT* psyOutElement,
                                              QC_OUT*          qcOut,
                                              QC_OUT_ELEMENT*  qcOutElement,
                                              ELEMENT_BITS*    elBits,
                                              AUDIO_OBJECT_TYPE aot,
                                              UINT             syntaxFlags,
                                              SCHAR            epConfig)
{
  int ch;

  /** SOLVING PROBLEM **/
  if ((*iterations)++ >= maxIterations)
  {
    if (qcOutElement->dynBitsUsed==0) {
    }
    /* crash recovery */
    else {
      INT bitsToSave = 0;
      if ( (bitsToSave = fixMax((qcOutElement->dynBitsUsed + 8) - (elBits->bitResLevelEl + qcOutElement->grantedDynBits),
                                (qcOutElement->dynBitsUsed + qcOutElement->staticBitsUsed + 8) - (elBits->maxBitsEl))) > 0 )
      {
        FDKaacEnc_crashRecovery(nChannels,
                      psyOutElement,
                      qcOut,
                      qcOutElement,
                      bitsToSave,
                      aot,
                      syntaxFlags,
                      epConfig) ;
    }
    else
    {
      for (ch = 0; ch < nChannels; ch++)
      {
          qcOutElement->qcOutChannel[ch]->globalGain += 1;
      }
    }
    for (ch = 0; ch < nChannels; ch++)
    {
      calculateQuant[ch] = 1;
    }
  }
  }
  else /* iterations >= maxIterations */
  {
    /* increase gain (+ next iteration) */
    for (ch = 0; ch < nChannels; ch++)
    {
      if(!chConstraintsFulfilled[ch])
      {
          qcOutElement->qcOutChannel[ch]->globalGain += gainAdjustment ;
          calculateQuant[ch] = 1; /* global gain has changed, recalculate quantization in next iteration! */
      }
    }
  }

  return AAC_ENC_OK;
}

AAC_ENCODER_ERROR FDKaacEnc_updateFillBits(CHANNEL_MAPPING*          cm,
                                           QC_STATE*                 qcKernel,
Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
1235
                                           ELEMENT_BITS* RESTRICT    elBits[(8)],
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
                                           QC_OUT**                  qcOut)
{
  switch (qcKernel->bitrateMode) {
    case QCDATA_BR_MODE_SFR:
      break;

    case QCDATA_BR_MODE_FF:
       break;

    case QCDATA_BR_MODE_VBR_1:
    case QCDATA_BR_MODE_VBR_2:
    case QCDATA_BR_MODE_VBR_3:
    case QCDATA_BR_MODE_VBR_4:
    case QCDATA_BR_MODE_VBR_5:
      qcOut[0]->totFillBits = (qcOut[0]->grantedDynBits - qcOut[0]->usedDynBits)&7; /* precalculate alignment bits */
      break;

    case QCDATA_BR_MODE_CBR:
    case QCDATA_BR_MODE_INVALID:
    default:
      INT bitResSpace = qcKernel->bitResTotMax - qcKernel->bitResTot ;
      /* processing fill-bits */
      INT deltaBitRes = qcOut[0]->grantedDynBits - qcOut[0]->usedDynBits ;
      qcOut[0]->totFillBits = fixMax((deltaBitRes&7), (deltaBitRes - (fixMax(0,bitResSpace-7)&~7)));
      break;
  } /* switch (qcKernel->bitrateMode) */

  return AAC_ENC_OK;
}




/*********************************************************************************

         functionname: FDKaacEnc_calcMaxValueInSfb
         description:
         return:

**********************************************************************************/

static INT FDKaacEnc_calcMaxValueInSfb(INT   sfbCnt,
                             INT   maxSfbPerGroup,
                             INT   sfbPerGroup,
                             INT  *RESTRICT sfbOffset,
                             SHORT *RESTRICT quantSpectrum,
                             UINT *RESTRICT maxValue)
{
  INT sfbOffs,sfb;
  INT maxValueAll = 0;

  for (sfbOffs=0;sfbOffs<sfbCnt;sfbOffs+=sfbPerGroup)
    for (sfb = 0; sfb < maxSfbPerGroup; sfb++)
    {
      INT line;
      INT maxThisSfb = 0;
      for (line = sfbOffset[sfbOffs+sfb]; line < sfbOffset[sfbOffs+sfb+1]; line++)
      {
        INT tmp = fixp_abs(quantSpectrum[line]);
        maxThisSfb = fixMax(tmp, maxThisSfb);
      }

      maxValue[sfbOffs+sfb] = maxThisSfb;
      maxValueAll = fixMax(maxThisSfb, maxValueAll);
    }
  return maxValueAll;
}


/*********************************************************************************

         functionname: FDKaacEnc_updateBitres
         description:
         return:

**********************************************************************************/
void FDKaacEnc_updateBitres(CHANNEL_MAPPING *cm,
                            QC_STATE* qcKernel,
                            QC_OUT** qcOut)
{
  switch (qcKernel->bitrateMode) {
    case QCDATA_BR_MODE_FF:
    case QCDATA_BR_MODE_VBR_1:
    case QCDATA_BR_MODE_VBR_2:
    case QCDATA_BR_MODE_VBR_3:
    case QCDATA_BR_MODE_VBR_4:
    case QCDATA_BR_MODE_VBR_5:
      /* variable bitrate */
      qcKernel->bitResTot = FDKmin(qcKernel->maxBitsPerFrame, qcKernel->bitResTotMax);
      break;

    case QCDATA_BR_MODE_CBR:
    case QCDATA_BR_MODE_SFR:
    case QCDATA_BR_MODE_INVALID:
    default:
      int c = 0;
      /* constant bitrate */
      {
        qcKernel->bitResTot += qcOut[c]->grantedDynBits - (qcOut[c]->usedDynBits + qcOut[c]->totFillBits + qcOut[c]->alignBits);
      }
      break;
  }
}

/*********************************************************************************

         functionname: FDKaacEnc_FinalizeBitConsumption
         description:
         return:

**********************************************************************************/
AAC_ENCODER_ERROR FDKaacEnc_FinalizeBitConsumption(CHANNEL_MAPPING *cm,
                                                   QC_STATE *qcKernel,
                                                   QC_OUT *qcOut,
                                                   QC_OUT_ELEMENT** qcElement,
                                                   HANDLE_TRANSPORTENC hTpEnc,
                                                   AUDIO_OBJECT_TYPE   aot,
                                                   UINT                syntaxFlags,
                                                   SCHAR               epConfig)
{
  QC_OUT_EXTENSION fillExtPayload;
  INT totFillBits, alignBits;

1359 1360 1361
  /* Get total consumed bits in AU */
  qcOut->totalBits = qcOut->staticBits + qcOut->usedDynBits  + qcOut->totFillBits +
                     qcOut->elementExtBits + qcOut->globalExtBits;
1362

1363
  if (qcKernel->bitrateMode==QCDATA_BR_MODE_CBR) {
1364 1365

    /* Now we can get the exact transport bit amount, and hopefully it is equal to the estimated value */
1366
    INT exactTpBits = transportEnc_GetStaticBits(hTpEnc, qcOut->totalBits);
1367 1368 1369 1370

    if (exactTpBits != qcKernel->globHdrBits) {
      INT diffFillBits = 0;

1371 1372 1373
      /* How many bits can be taken by bitreservoir */
      const INT bitresSpace = qcKernel->bitResTotMax - (qcKernel->bitResTot + (qcOut->grantedDynBits - (qcOut->usedDynBits + qcOut->totFillBits) ) );

1374
      /* Number of bits which can be moved to bitreservoir. */
1375 1376
      const INT bitsToBitres = qcKernel->globHdrBits - exactTpBits;
      FDK_ASSERT(bitsToBitres>=0); /* is always positive */
1377

1378 1379 1380 1381 1382
      /* If bitreservoir can not take all bits, move ramaining bits to fillbits */
      diffFillBits = FDKmax(0, bitsToBitres - bitresSpace);

      /* Assure previous alignment */
      diffFillBits = (diffFillBits+7)&~7;
1383

1384 1385
      /* Move as many bits as possible to bitreservoir */
      qcKernel->bitResTot    += (bitsToBitres-diffFillBits);
1386

1387
      /* Write remaing bits as fill bits */
1388 1389 1390 1391
      qcOut->totFillBits     += diffFillBits;
      qcOut->totalBits       += diffFillBits;
      qcOut->grantedDynBits  += diffFillBits;

1392
      /* Get new header bits */
1393
      qcKernel->globHdrBits = transportEnc_GetStaticBits(hTpEnc, qcOut->totalBits);
1394 1395 1396 1397 1398 1399 1400

      if (qcKernel->globHdrBits != exactTpBits) {
        /* In previous step, fill bits and corresponding total bits were changed when bitreservoir was completely filled.
           Now we can take the too much taken bits caused by header overhead from bitreservoir.
         */
        qcKernel->bitResTot -= (qcKernel->globHdrBits - exactTpBits);
      }
1401
    }
1402 1403 1404 1405 1406

  } /* MODE_CBR */

  /* Update exact number of consumed header bits. */
  qcKernel->globHdrBits = transportEnc_GetStaticBits(hTpEnc, qcOut->totalBits);
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590

  /* Save total fill bits and distribut to alignment and fill bits */
  totFillBits = qcOut->totFillBits;

  /* fake a fill extension payload */
  FDKmemclear(&fillExtPayload, sizeof(QC_OUT_EXTENSION));

  fillExtPayload.type = EXT_FILL_DATA;
  fillExtPayload.nPayloadBits = totFillBits;

  /* ask bitstream encoder how many of that bits can be written in a fill extension data entity */
  qcOut->totFillBits = FDKaacEnc_writeExtensionData( NULL,
                                                    &fillExtPayload,
                                                     0, 0,
                                                     syntaxFlags,
                                                     aot,
                                                     epConfig );

  /* now distribute extra fillbits and alignbits */
  alignBits = 7 - (qcOut->staticBits + qcOut->usedDynBits + qcOut->elementExtBits
                   + qcOut->totFillBits + qcOut->globalExtBits -1)%8;

  /* Maybe we could remove this */
  if( ((alignBits + qcOut->totFillBits - totFillBits)==8) && (qcOut->totFillBits>8) )
        qcOut->totFillBits -= 8;

  qcOut->totalBits = qcOut->staticBits + qcOut->usedDynBits + qcOut->totFillBits +
                     alignBits + qcOut->elementExtBits + qcOut->globalExtBits;

  if ( (qcOut->totalBits>qcKernel->maxBitsPerFrame) || (qcOut->totalBits<qcKernel->minBitsPerFrame) ) {
    return AAC_ENC_QUANT_ERROR;
  }

  qcOut->alignBits = alignBits;

  return AAC_ENC_OK;
}



/*********************************************************************************

         functionname: FDKaacEnc_crashRecovery
         description:  fulfills constraints by means of brute force...
                       => bits are saved by cancelling out spectral lines!!
                          (beginning at the highest frequencies)
         return:       errorcode

**********************************************************************************/

static void FDKaacEnc_crashRecovery(INT               nChannels,
                          PSY_OUT_ELEMENT*  psyOutElement,
                          QC_OUT*           qcOut,
                          QC_OUT_ELEMENT   *qcElement,
                          INT               bitsToSave,
                          AUDIO_OBJECT_TYPE aot,
                          UINT              syntaxFlags,
                          SCHAR             epConfig)
{
  INT ch ;
  INT savedBits = 0 ;
  INT sfb, sfbGrp ;
  INT bitsPerScf[(2)][MAX_GROUPED_SFB] ;
  INT sectionToScf[(2)][MAX_GROUPED_SFB] ;
  INT *sfbOffset ;
  INT sect, statBitsNew ;
  QC_OUT_CHANNEL **qcChannel = qcElement->qcOutChannel;
  PSY_OUT_CHANNEL **psyChannel = psyOutElement->psyOutChannel;

  /* create a table which converts frq-bins to bit-demand...    [bitsPerScf] */
  /* ...and another one which holds the corresponding sections [sectionToScf] */
  for (ch = 0; ch < nChannels; ch++)
  {
    sfbOffset = psyChannel[ch]->sfbOffsets ;

    for (sect = 0; sect < qcChannel[ch]->sectionData.noOfSections; sect++)
    {
      INT sfb ;
      INT codeBook = qcChannel[ch]->sectionData.huffsection[sect].codeBook ;

      for (sfb = qcChannel[ch]->sectionData.huffsection[sect].sfbStart;
           sfb < qcChannel[ch]->sectionData.huffsection[sect].sfbStart +
                 qcChannel[ch]->sectionData.huffsection[sect].sfbCnt;
           sfb++)
      {
        bitsPerScf[ch][sfb] = 0;
        if ( (codeBook != CODE_BOOK_PNS_NO) /*&&
             (sfb < (qcChannel[ch]->sectionData.noOfGroups*qcChannel[ch]->sectionData.maxSfbPerGroup))*/ )
        {
            INT sfbStartLine = sfbOffset[sfb] ;
            INT noOfLines    = sfbOffset[sfb+1] - sfbStartLine ;
            bitsPerScf[ch][sfb] = FDKaacEnc_countValues(&(qcChannel[ch]->quantSpec[sfbStartLine]), noOfLines, codeBook) ;
        }
        sectionToScf[ch][sfb] = sect ;
      }

    }
  }

  /* LOWER [maxSfb] IN BOTH CHANNELS!! */
  /* Attention: in case of stereo: maxSfbL == maxSfbR, GroupingL == GroupingR ; */

  for (sfb = qcChannel[0]->sectionData.maxSfbPerGroup-1; sfb >= 0; sfb--)
  {
    for (sfbGrp = 0; sfbGrp < psyChannel[0]->sfbCnt; sfbGrp += psyChannel[0]->sfbPerGroup)
    {
      for (ch = 0; ch < nChannels; ch++)
      {
        int sect = sectionToScf[ch][sfbGrp+sfb];
        qcChannel[ch]->sectionData.huffsection[sect].sfbCnt-- ;
        savedBits += bitsPerScf[ch][sfbGrp+sfb] ;

        if (qcChannel[ch]->sectionData.huffsection[sect].sfbCnt == 0) {
          savedBits += (psyChannel[ch]->lastWindowSequence!=SHORT_WINDOW) ? FDKaacEnc_sideInfoTabLong[0]
                                                                      : FDKaacEnc_sideInfoTabShort[0];
        }
      }
    }

    /* ...have enough bits been saved? */
    if (savedBits >= bitsToSave)
      break ;

  } /* sfb loop */

  /* if not enough bits saved,
     clean whole spectrum and remove side info overhead */
  if (sfb == -1) {
    sfb = 0 ;
  }

  for (ch = 0; ch < nChannels; ch++)
  {
    qcChannel[ch]->sectionData.maxSfbPerGroup = sfb ;
    psyChannel[ch]->maxSfbPerGroup = sfb ;
    /* when no spectrum is coded save tools info in bitstream */
    if(sfb==0) {
      FDKmemclear(&psyChannel[ch]->tnsInfo, sizeof(TNS_INFO));
      FDKmemclear(&psyOutElement->toolsInfo, sizeof(TOOLSINFO));
    }
  }
  /* dynamic bits will be updated in iteration loop */

  { /* if stop sfb has changed save bits in side info, e.g. MS or TNS coding */
    ELEMENT_INFO elInfo;

    FDKmemclear(&elInfo, sizeof(ELEMENT_INFO));
    elInfo.nChannelsInEl = nChannels;
    elInfo.elType = (nChannels == 2) ? ID_CPE : ID_SCE;

    FDKaacEnc_ChannelElementWrite( NULL, &elInfo, NULL,
                                   psyOutElement,
                                   psyChannel,
                                   syntaxFlags,
                                   aot,
                                   epConfig,
                                  &statBitsNew,
                                   0 );
  }

  savedBits = qcElement->staticBitsUsed - statBitsNew;

  /* update static and dynamic bits */
  qcElement->staticBitsUsed -= savedBits;
  qcElement->grantedDynBits += savedBits;

  qcOut->staticBits     -= savedBits;
  qcOut->grantedDynBits += savedBits;
  qcOut->maxDynBits     += savedBits;


}



void  FDKaacEnc_QCClose (QC_STATE  **phQCstate, QC_OUT **phQC)
{
  int n, i;

  if (phQC!=NULL) {

    for (n=0;n<(1);n++) {
      if (phQC[n] != NULL) {
        QC_OUT    *hQC      = phQC[n];
Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
1591
        for (i=0; i<(8); i++) {
1592 1593
        }

Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
1594
        for (i=0; i<(8); i++) {
1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613
          if (hQC->qcElement[i])
            FreeRam_aacEnc_QCelement(&hQC->qcElement[i]);
        }

        FreeRam_aacEnc_QCout(&phQC[n]);
      }
    }
  }

  if (phQCstate!=NULL) {
    if (*phQCstate != NULL) {
      QC_STATE  *hQCstate = *phQCstate;

      if (hQCstate->hAdjThr != NULL)
        FDKaacEnc_AdjThrClose(&hQCstate->hAdjThr);

      if (hQCstate->hBitCounter != NULL)
        FDKaacEnc_BCClose(&hQCstate->hBitCounter);

Jean-Michel Trivi's avatar
Jean-Michel Trivi committed
1614
      for (i=0; i<(8); i++) {
1615 1616 1617 1618 1619 1620 1621 1622 1623
        if (hQCstate->elementBits[i]!=NULL) {
          FreeRam_aacEnc_ElementBits(&hQCstate->elementBits[i]);
        }
      }
      FreeRam_aacEnc_QCstate(phQCstate);
    }
  }
}